View difference between Paste ID: TDDZ6Jbw and XGSd3UFg
SHOW: | | - or go back to the newest paste.
1
--MEEPCITY FUCKER BY RENNI/REN 
2
 
3
 -- GUI
4
5
local ScreenGui = Instance.new("ScreenGui")
6
local Frame = Instance.new("Frame")
7
local TextLabel = Instance.new("TextLabel")
8
local Plus = Instance.new("TextButton")
9
local Boombox = Instance.new("TextButton")
10
local Farm = Instance.new("TextButton")
11
local tp = Instance.new("TextButton")
12
local TextLabel_2 = Instance.new("TextLabel")
13
local trailer = Instance.new("TextButton")
14
local Party = Instance.new("TextButton")
15
local large = Instance.new("TextButton")
16
local small = Instance.new("TextButton")
17
local reg = Instance.new("TextButton")
18
local TextLabel_3 = Instance.new("TextLabel")
19
20
-- yee
21
22
ScreenGui.Parent = game.CoreGui
23
24
Frame.Parent           = ScreenGui
25
Frame.BackgroundColor3 = Color3.new(0.12549, 0.12549, 0.12549)
26
Frame.BorderSizePixel  = 0
27
Frame.Position         = UDim2.new(0.0736468509, 0, 0.4413203, 0)
28
Frame.Size             = UDim2.new(0, 694, 0, 318)
29
Frame.Active           = true
30
Frame.Draggable        = true
31
32
33
TextLabel.Parent = Frame
34
TextLabel.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
35
TextLabel.BorderSizePixel = 0
36
TextLabel.Position = UDim2.new(0, 0, -0.0251572318, 0)
37
TextLabel.Size = UDim2.new(0, 694, 0, 50)
38
TextLabel.Font = Enum.Font.Highway
39
TextLabel.Text = "MeepCity Fucker 2.0 By Ren"
40
TextLabel.TextColor3 = Color3.new(0, 0, 0)
41
TextLabel.TextSize = 20
42
43
Plus.Name = "Plus"
44
Plus.Parent = Frame
45
Plus.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
46
Plus.BorderSizePixel = 0
47
Plus.Position = UDim2.new(0.0214285702, 0, 0.171027273, 0)
48
Plus.Size = UDim2.new(0, 200, 0, 50)
49
Plus.Font = Enum.Font.Cartoon
50
Plus.Text = "Become a Plus Member"
51
Plus.TextColor3 = Color3.new(0, 0, 0)
52
Plus.TextSize = 20
53
Plus.MouseButton1Click:connect(function()
54
	game.ReplicatedStorage.PlayerData[game.Players.LocalPlayer.UserId].PLUS.Value = true
55
end)
56
57
Boombox.Name = "Boombox"
58
Boombox.Parent = Frame
59
Boombox.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
60
Boombox.BorderSizePixel = 0
61
Boombox.Position = UDim2.new(0.0214285702, 0, 0.350272536, 0)
62
Boombox.Size = UDim2.new(0, 200, 0, 50)
63
Boombox.Font = Enum.Font.Cartoon
64
Boombox.Text = "Get the Boombox"
65
Boombox.TextColor3 = Color3.new(0, 0, 0)
66
Boombox.TextSize = 20
67
Boombox.MouseButton1Click:connect(function()
68
	game.ReplicatedStorage.PlayerData[game.Players.LocalPlayer.UserId].BoomBox.Value = true
69
end)
70
71
Farm.Name = "Farm"
72
Farm.Parent = Frame
73
Farm.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
74
Farm.BorderSizePixel = 0
75
Farm.Position = UDim2.new(0.0214285702, 0, 0.535807133, 0)
76
Farm.Size = UDim2.new(0, 200, 0, 50)
77
Farm.Font = Enum.Font.Cartoon
78
Farm.Text = "Lake Money Farm 2.0"
79
Farm.TextColor3 = Color3.new(0, 0, 0)
80
Farm.TextSize = 20
81
Farm.MouseButton1Click:connect(function()
82
		game.ReplicatedStorage.Connection:InvokeServer(9,2) --Go Near a lake
83
game.ReplicatedStorage.Connection:InvokeServer(50)
84
game.ReplicatedStorage.PlayerData[game.Players.LocalPlayer.UserId].PLUS.Value = true 
85
while wait() do
86
game.ReplicatedStorage.Connection:InvokeServer(49)
87
game.ReplicatedStorage.Connection:InvokeServer(51)
88
end 
89
end)
90
91
tp.Name = "tp"
92
tp.Parent = Frame
93
tp.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
94
tp.BorderSizePixel = 0
95
tp.Position = UDim2.new(0.0214285702, 0, 0.721341729, 0)
96
tp.Size = UDim2.new(0, 200, 0, 50)
97
tp.Font = Enum.Font.Cartoon
98
tp.Text = "CTRL + Click TP"
99
tp.TextColor3 = Color3.new(0, 0, 0)
100
tp.TextSize = 20
101
tp.MouseButton1Click:connect(function()
102
	local Player = game.Players.LocalPlayer
103
local Mouse = Player:GetMouse()
104
local UserInputService = game:GetService('UserInputService')
105
106
local HoldingControl = false
107
108
Mouse.Button1Down:connect(function()
109
if HoldingControl then
110
Player.Character:MoveTo(Mouse.Hit.p)
111
end
112
end)
113
114
UserInputService.InputBegan:connect(function(Input, Processed)
115
if Input.UserInputType == Enum.UserInputType.Keyboard then
116
if Input.KeyCode == Enum.KeyCode.LeftControl then
117
HoldingControl = true
118
elseif Input.KeyCode == Enum.KeyCode.RightControl then
119
HoldingControl = true 
120
end
121
end
122
end)
123
124
UserInputService.InputEnded:connect(function(Input, Processed)
125
if Input.UserInputType == Enum.UserInputType.Keyboard then
126
if Input.KeyCode == Enum.KeyCode.LeftControl then
127
HoldingControl = false
128
elseif Input.KeyCode == Enum.KeyCode.RightControl then
129
HoldingControl = false
130
end
131
end
132
end)
133
end)
134
135
TextLabel_2.Parent = Frame
136
TextLabel_2.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
137
TextLabel_2.BorderSizePixel = 0
138
TextLabel_2.Position = UDim2.new(0.318443805, 0, 0.169811323, 0)
139
TextLabel_2.Size = UDim2.new(0, 18, 0, 225)
140
TextLabel_2.Font = Enum.Font.Code
141
TextLabel_2.Text = ""
142
TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
143
TextLabel_2.TextSize = 20
144
145
trailer.Name = "trailer"
146
trailer.Parent = Frame
147
trailer.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
148
trailer.BorderSizePixel = 0
149
trailer.Position = UDim2.new(0.357142866, 0, 0.171027243, 0)
150
trailer.Size = UDim2.new(0, 200, 0, 50)
151
trailer.Font = Enum.Font.Cartoon
152
trailer.Text = "Trailer Estate"
153
trailer.TextColor3 = Color3.new(0, 0, 0)
154
trailer.TextSize = 20
155
trailer.MouseButton1Click:connect(function()
156
	game.ReplicatedStorage.Connection:InvokeServer(45, 482)
157
	end)
158
159
Party.Name = "Party"
160
Party.Parent = Frame
161
Party.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
162
Party.BorderSizePixel = 0
163
Party.Position = UDim2.new(0.652857184, 0, 0.171027243, 0)
164
Party.Size = UDim2.new(0, 200, 0, 50)
165
Party.Font = Enum.Font.Cartoon
166
Party.Text = "Party Estate"
167
Party.TextColor3 = Color3.new(0, 0, 0)
168
Party.TextSize = 20
169
Party.MouseButton1Click:connect(function()
170
	game.ReplicatedStorage.Connection:InvokeServer(45, 369) 
171
end)
172
173
large.Name = "large"
174
large.Parent = Frame
175
large.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
176
large.BorderSizePixel = 0
177
large.Position = UDim2.new(0.357142895, 0, 0.350272536, 0)
178
large.Size = UDim2.new(0, 200, 0, 50)
179
large.Font = Enum.Font.Cartoon
180
large.Text = "Larger Estate"
181
large.TextColor3 = Color3.new(0, 0, 0)
182
large.TextSize = 20
183
large.MouseButton1Click:connect(function()
184
	game.ReplicatedStorage.Connection:InvokeServer(45, 185)
185
end)
186
187
small.Name = "small"
188
small.Parent = Frame
189
small.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
190
small.BorderSizePixel = 0
191
small.Position = UDim2.new(0.652857184, 0, 0.350272536, 0)
192
small.Size = UDim2.new(0, 200, 0, 50)
193
small.Font = Enum.Font.Cartoon
194
small.Text = "Small Estate"
195
small.TextColor3 = Color3.new(0, 0, 0)
196
small.TextSize = 20
197
small.MouseButton1Click:connect(function()
198
	game.ReplicatedStorage.Connection:InvokeServer(45, 134) 
199
end)
200
201
reg.Name = "reg"
202
reg.Parent = Frame
203
reg.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
204
reg.BorderSizePixel = 0
205
reg.Position = UDim2.new(0.357142866, 0, 0.534591198, 0)
206
reg.Size = UDim2.new(0, 407, 0, 50)
207
reg.Font = Enum.Font.Cartoon
208
reg.Text = "Regular Estate"
209
reg.TextColor3 = Color3.new(0, 0, 0)
210
reg.TextSize = 20
211
reg.MouseButton1Click:connect(function()
212
	game.ReplicatedStorage.Connection:InvokeServer(45, 119)
213
end)
214
215
TextLabel_3.Parent = Frame
216
TextLabel_3.BackgroundColor3 = Color3.new(0.541176, 0.137255, 0.505882)
217
TextLabel_3.BorderSizePixel = 0
218
TextLabel_3.Position = UDim2.new(0.357142866, 0, 0.720125794, 0)
219
TextLabel_3.Size = UDim2.new(0, 407, 0, 50)
220
TextLabel_3.Font = Enum.Font.Code
221
TextLabel_3.Text = "More Functions Soon <3 "
222
TextLabel_3.TextColor3 = Color3.new(0, 0, 0)
223
TextLabel_3.TextSize = 20
224
225
-- Scripts