View difference between Paste ID: rGPFupKD and PxiW1u3E
SHOW: | | - or go back to the newest paste.
1
print("controls:")
2
print("z - make it morning")
3
print("x - make it night")
4
print("c - clean workspace")
5
print("v - heal the player your mouse is pointing at")
6
print("f - make the player your mouse is pointing at fat")
7
print("n - make everyone fat")
8
print("e - annihilate the player your mouse is pointing at")
9
print("p - suicide")
10
print("k - kill other players")
11
print("b - control the player your mouse it pointing at")
12
print("r - tp evryone to you")
13
print("t - send the player your mouse is pointing at to 'heaven'")
14
print("q - spawn pet")
15
print("g - spawn a blackhole")
16
oil = game.Players.LocalPlayer
17
sauce = oil.Character
18
tor = sauce:FindFirstChild("Torso") or sauce:FindFirstChild("UpperTorso")
19
head = sauce:FindFirstChild("Head")
20
larm = sauce:FindFirstChild("Left Arm") or sauce:FindFirstChild("LeftUpperArm")
21
rarm = sauce:FindFirstChild("Right Arm") or sauce:FindFirstChild("RightUpperArm")
22
rleg = sauce:FindFirstChild("Right Leg") or sauce:FindFirstChild("RightUpperLeg")
23
lleg = sauce:FindFirstChild("Left Leg") or sauce:FindFirstChild("LeftUpperLeg")
24
hum = sauce:FindFirstChildOfClass("Humanoid")
25
humroot = sauce:FindFirstChild("HumanoidRootPart")
26
mou = oil:GetMouse()
27
remoteequipped = true
28
controlling = false
29
light = game:GetService("Lighting")
30
tool = Instance.new("Tool", oil.Backpack)
31
tool.Name = "Remote"
32
hand = Instance.new("Part", tool)
33
hand.Name = "Handle"
34
hand.Size = Vector3.new(1, 1, 1)
35
hand.Transparency = 1
36
p1 = Instance.new("Part", hand)
37
p1.Size = Vector3.new(0.6, 0.1, 1.2)
38
p1.Material = "Metal"
39
p1.Name = "p1"
40
p2 = Instance.new("Part", hand)
41
p2.Size = Vector3.new(0.4, 0.1, 0.1)
42
p2.Material = "Metal"
43
p2.Name = "p2"
44
p2.Shape = "Cylinder"
45
p3 = Instance.new("Part", hand)
46
p3.Shape = "Ball"
47
p3.Material = "Neon"
48
p3.Size = Vector3.new(0.15, 0.15, 0.15)
49
p3.BrickColor = BrickColor.new("Crimson")
50
p3.Name = "p3"
51
p4 = Instance.new("Part", hand)
52
p4.Size = Vector3.new(0.2, 0.4, 0.4)
53
p4.Material = "Neon"
54
p4.Name = "p4"
55
p4.BrickColor = BrickColor.new("Maroon")
56
p4.Shape = "Cylinder"
57
w1 = Instance.new("Weld", p1)
58
w1.Part0 = hand
59
w1.Part1 = p1
60
w1.C1 = CFrame.new(0, 0, 0.6)
61
w1.Name = "w1"
62
w2 = Instance.new("Weld", p2)
63
w2.Part0 = hand
64
w2.Part1 = p2
65
w2.C1 = CFrame.new(1.3, 0, 0) * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0))
66
w3 = Instance.new("Weld", p3)
67
w3.Part0 = hand
68
w3.Part1 = p3
69
w3.C1 = CFrame.new(0, 0, 1.5)
70
w4 = Instance.new("Weld", p4)
71
w4.Part0 = hand
72
w4.Part1 = p4
73
w4.C1 = CFrame.new(0.1, 0, 0.6) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90))
74
75
76
tool.Equipped:connect(function()
77
remoteequipped = true
78
function pressed(key)
79
if remoteequipped == true then
80
if key == "x" then
81
light.TimeOfDay = 21
82
elseif key == "z" then
83
light.TimeOfDay = 7
84
elseif key == "c" then
85
for i,v in pairs(workspace:GetChildren()) do
86
if v:IsA("Part") and v.Name ~= "Base" then
87
v.Locked = false
88
v:remove()
89
end
90
if v:IsA("Model") and not v:FindFirstChildOfClass("Humanoid") then
91
v:remove()
92
end
93
end
94
elseif key == "p" then
95
hum.Health = 0
96
elseif key == "k" then
97
for i,v in pairs(workspace:GetChildren()) do
98
if v:IsA("Model") and v:FindFirstChildOfClass("Humanoid") and v.Name ~= sauce.Name then
99
khum = v:FindFirstChildOfClass("Humanoid")
100
khum.Health = 0
101
end
102
end
103
elseif key == "r" then
104
for i,v in pairs(workspace:GetChildren()) do
105
if v:IsA("Model") and v:FindFirstChildOfClass("Humanoid") and v.Name ~= sauce.Name then
106
vtor = v:FindFirstChild("Torso" )or v:FindFirstChild("UpperTorso")
107
vtor.CFrame = tor.CFrame * CFrame.new(0, 0, -5)
108
end
109
end
110
elseif key == "v" then
111
if mou.Target.Parent and mou.Target.Parent:FindFirstChildOfClass("Humanoid") then
112
mouhum = mou.Target.Parent:FindFirstChildOfClass("Humanoid")
113
mouhum.Health = mouhum.MaxHealth
114
mouhead = mou.Target.Parent:FindFirstChild("Head")
115
bill = Instance.new("BillboardGui", mouhead)
116
bill.AlwaysOnTop = true
117
bill.StudsOffset = Vector3.new(0, 2, 0)
118
bill.Adornee = mouhead
119
bill.Size = UDim2.new(5, 35, 5, 35)
120
btext = Instance.new("TextLabel", bill)
121
btext.Text = mou.Target.Parent.Name.." has been Healed!"
122
btext.Font = "Bodoni"
123
btext.TextSize = 30
124
btext.TextScaled = true
125
btext.BorderSizePixel = 0
126
btext.BackgroundTransparency = 1
127
btext.Size = UDim2.new(1.5, 0, 0.5, 0)
128
btext.TextColor = BrickColor.new("Bright green")
129
game:GetService("Debris"):AddItem(bill, 2)
130
end
131
elseif key == "e" then
132
if mou.Target.Parent and mou.Target.Parent:FindFirstChildOfClass("Humanoid") then
133
local nomoretor = mou.Target.Parent:FindFirstChild("Torso") or mou.Target.Parent:FindFirstChild("UpperTorso")
134
local nomorehum = mou.Target.parent:FindFirstChildOfClass("Humanoid")
135
local explo = Instance.new("Explosion", workspace)
136
explo.Position = nomoretor.Position
137
nomorehum.Health = 0
138
end
139
elseif key == "f" then
140
if mou.Target.Parent and mou.Target.Parent:FindFirstChildOfClass("Humanoid") then
141
local fatman = mou.Target.Parent
142
local fatmanhum = fatman:FindFirstChildOfClass("Humanoid")
143
fatmanhum.WalkSpeed = 8
144
local fattor = mou.Target.Parent:FindFirstChild("Torso") or mou.Target.Parent:FindFirstChild("UpperTorso")
145
local hinum = Instance.new("Sound", fattor)
146
hinum.SoundId = "rbxassetid://1278031541"
147
hinum.Volume = 10
148
local realfat = Instance.new("Part", fattor)
149
realfat.BrickColor = fattor.BrickColor
150
realfat.Material = "SmoothPlastic"
151
local supaweld = Instance.new("Weld", realfat)
152
supaweld.Part0 = fattor
153
supaweld.Part1 = realfat
154
local fat = Instance.new("SpecialMesh", realfat)
155
fat.MeshType = "Sphere"
156
fat.Scale = Vector3.new(0.6, 1.6, 0.9)
157
fat.Offset = Vector3.new(0, -0.4, -0.7)
158
hinum:Play()
159
if fatman:FindFirstChildOfClass("Shirt") then
160
fatman:FindFirstChildOfClass("Shirt"):remove()
161
end
162
end
163
elseif key == "b" then
164
if mou.Target.Parent and mou.Target.Parent:FindFirstChildOfClass("Humanoid") and controlling == false then
165
controlling = true
166
cman = mou.Target.Parent
167
mtor = cman:FindFirstChild("Torso") or cman:FindFirstChild("UpperTorso")
168
mlarm = cman:FindFirstChild("Left Arm") or cman:FindFirstChild("LeftUpperArm")
169
mrarm = cman:FindFirstChild("Right Arm") or cman:FindFirstChild("RightUpperArm")
170
mlleg = cman:FindFirstChild("Left Leg") or cman:FindFirstChild("LeftUpperLeg")
171
mrleg = cman:FindFirstChild("Right Leg") or cman:FindFirstChild("RightUpperLeg")
172
mhead = cman:FindFirstChild("Head")
173
mhum = cman:FindFirstChildOfClass("Humanoid")
174
mhum.PlatformStand = true
175
hum.NameOcclusion = "NoOcclusion"
176
mface = head:FindFirstChild("face")
177
mface.Transparency = 1
178
humroot.Transparency = 1
179
for i,v in pairs(sauce:GetChildren()) do
180
if v:IsA("Part") then
181
v.Transparency = 1
182
end
183
if v:IsA("Accessory") then
184
v.Handle.Transparency = 1
185
end
186
end
187
ow1 = Instance.new("Weld", tor)
188
ow1.Part0 = tor
189
ow1.Part1 = mtor
190
ow2 = Instance.new("Weld", larm)
191
ow2.Part0 = larm
192
ow2.Part1 = mlarm
193
ow3 = Instance.new("Weld", rarm)
194
ow3.Part0 = rarm
195
ow3.Part1 = mrarm
196
ow4 = Instance.new("Weld", lleg)
197
ow4.Part0 = lleg
198
ow4.Part1 = mlleg
199
ow5 = Instance.new("Weld", rleg)
200
ow5.Part0 = rleg
201
ow5.Part1 = mrleg
202
ow6 = Instance.new("Weld", head)
203
ow6.Part0 = head
204
ow6.Part1 = mhead
205
elseif controlling == true then
206
controlling = false
207
ow1:Destroy()
208
ow2:Destroy()
209
ow3:Destroy()
210
ow4:Destroy()
211
ow5:Destroy()
212
ow6:Destroy()
213
mhum.PlatformStand = false
214
hum.NameOcclusion = "OccludeAll"
215
humrootTransparency = 1
216
mface.Transparency = 0
217
for i,v in pairs(sauce:GetChildren()) do
218
if v:IsA("Part") and v ~= humroot then
219
v.Transparency = 0
220
end
221
if v:IsA("Accessory") then
222
v.Handle.Transparency = 0
223
end
224
end
225
end
226
elseif key == "n" then
227
for i,v in pairs(workspace:GetChildren()) do
228
if v:IsA("Model") and v:FindFirstChildOfClass("Humanoid") and v.Name ~= sauce.Name then
229
local fatman = v
230
local fatmanhum = fatman:FindFirstChildOfClass("Humanoid")
231
fatmanhum.WalkSpeed = 8
232
local fattor = fatman:FindFirstChild("Torso") or fatman:FindFirstChild("UpperTorso")
233
local hinum2 = Instance.new("Sound", fattor)
234
hinum2.SoundId = "rbxassetid://1278031541"
235
hinum2.Volume = 10
236
local realfat = Instance.new("Part", fattor)
237
realfat.BrickColor = fattor.BrickColor
238
realfat.Material = "SmoothPlastic"
239
local supaweld = Instance.new("Weld", realfat)
240
supaweld.Part0 = fattor
241
supaweld.Part1 = realfat
242
local fat = Instance.new("SpecialMesh", realfat)
243
fat.MeshType = "Sphere"
244
fat.Scale = Vector3.new(0.6, 1.6, 0.9)
245
fat.Offset = Vector3.new(0, -0.4, -0.7)
246
hinum2:Play()
247
if fatman:FindFirstChildOfClass("Shirt") then
248
fatman:FindFirstChildOfClass("Shirt"):remove()
249
end
250
end
251
end
252
elseif key == "t" then
253
if mou.Target.Parent and mou.Target.Parent:FindFirstChildOfClass("Humanoid") then
254
local goneman = mou.Target.Parent
255
local gonehead = goneman:FindFirstChild("Head")
256
local gonetor = goneman:FindFirstChild("Torso") or goneman:FindFirstChild("UpperTorso")
257
local lightb = Instance.new("Part", goneman)
258
lightb.Shape = "Cylinder"
259
lightb.CanCollide = false
260
lightb.Anchored = true
261
lightb.Size = Vector3.new(300, 10, 10)
262
lightb.Material = "Neon"
263
lightb.Transparency = 0.5
264
lightb.BrickColor = BrickColor.new("New Yeller")
265
lightb.CFrame = gonetor.CFrame * CFrame.new(0, 140, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90))
266
local start = gonetor.CFrame
267
local finish = lightb.CFrame * CFrame.new(140, 0, 0)
268
for i = 0,1,.01 do
269
gonetor.CFrame = start:lerp(finish, i)
270
wait()
271
end
272
gonehead.Size = Vector3.new(50, 50, 50)
273
lightb:Destroy()
274
end
275
elseif key == "q" then
276
if mou.Target ~= nil then
277
local dont = Instance.new("Part", sauce)
278
dont.CFrame = mou.Hit
279
dont.Material = "Sand"
280
dont.BrickColor = BrickColor.new("Pastel yellow")
281
dont.Size = Vector3.new(3, 3, 3)
282
dont.Shape = "Ball"
283
dont.Anchored = true
284
local obj = Instance.new("Sound", dont)
285
local feats = {463838589, 691897627, 179270320, 425407550, 1074595721, 1065045593, 142688397, 1308566029, 1402510823}
286
obj.SoundId = "rbxassetid://"..feats[math.random(1,#feats)]
287
obj.Volume = 10
288
obj.Looped = true
289
obj:Play()
290
oil.Chatted:connect(function(msg)
291
if msg:lower():sub(1, 7) == "plastic" then
292
dont.Material = "Plastic"
293
elseif msg:lower():sub(1, 5) == "slate" then
294
dont.Material = "Slate"
295
elseif msg:lower():sub(1, 3) == "ice" then
296
dont.Material = "Ice"
297
elseif msg:lower():sub(1, 5) == "metal" then
298
dont.Material = "Metal"
299
elseif msg:lower():sub(1, 4) == "neon" then
300
dont.Material = "Neon"
301
elseif msg:lower():sub(1, 5) == "grass" then
302
dont.Material = "Grass"
303
elseif msg:lower():sub(1, 4) == "sand" then
304
dont.Material = "Sand"
305
elseif msg:lower():sub(1, 9) == "woodplank" then
306
dont.Material = "WoodPlanks"
307
elseif msg:lower():sub(1, 4) == "wood" then
308
dont.Material = "Wood"
309
elseif msg:lower():sub(1, 6) == "marble" then
310
dont.Material = "Marble"
311
elseif msg:lower():sub(1, 8) == "concrete" then
312
dont.Material = "Concrete"
313
elseif msg:lower():sub(1, 5) == "brick" then
314
dont.Material = "Brick"
315
elseif msg:lower():sub(1, 7) == "granite" then
316
dont.Material = "Granite"
317
elseif msg:lower():sub(1, 6) == "pebble" then
318
dont.Material = "Pebble"
319
elseif msg:lower():sub(1, 11) == "cobblestone" then
320
dont.Material = "Cobblestone"
321
elseif msg:lower():sub(1, 13) == "corrodedmetal" then
322
dont.Material = "CorrodedMetal"
323
elseif msg:lower():sub(1, 12) == "diamondplate" then
324
dont.Material = "DiamondPlate"
325
elseif msg:lower():sub(1, 4) == "foil" then
326
dont.Material = "Foil"
327
elseif msg:lower():sub(1, 6) == "fabric" then
328
dont.Material = "Fabric"
329
elseif msg:lower():sub(1, 6) == "yellow" then
330
dont.BrickColor = BrickColor.new("New Yeller")
331
elseif msg:lower():sub(1, 6) == "purple" then
332
dont.BrickColor = BrickColor.new("Bright violet")
333
elseif msg:lower():sub(1, 3) == "red" then
334
dont.BrickColor = BrickColor.new("Crimson")
335
elseif msg:lower():sub(1, 5) == "black" then
336
dont.BrickColor = BrickColor.new("Really black")
337
elseif msg:lower():sub(1, 5) == "white" then
338
dont.BrickColor = BrickColor.new("Institutional white")
339
elseif msg:lower():sub(1, 4) == "pink" then
340
dont.BrickColor = BrickColor.new("Hot pink")
341
elseif msg:lower():sub(1, 5) == "green" then
342
dont.BrickColor = BrickColor.new("Bright green")
343
elseif msg:lower():sub(1, 4) == "grey" then
344
dont.BrickColor = BrickColor.new("Medium stone grey")
345
elseif msg:lower():sub(1, 5) == "brown" then
346
dont.BrickColor = BrickColor.new("Burnt Sienna")
347
elseif msg:lower():sub(1, 6) == "orange" then
348
dont.BrickColor = BrickColor.new("Deep orange")
349
elseif msg:lower():sub(1, 4) == "blue" then
350
dont.BrickColor = BrickColor.new("Really blue")
351
elseif msg:lower():sub(1, 4) == "cyan" then
352
dont.BrickColor = BrickColor.new("Cyan")
353
elseif msg:lower():sub(1, 6) == "pastel" then
354
dont.BrickColor = BrickColor.new("Pastel yellow")
355
elseif msg:lower():sub(1, 5) == "ghost" then
356
dont.Transparency = 0.7
357
elseif msg:lower():sub(1, 5) == "alive" then
358
dont.Transparency = 0
359
elseif msg:lower():sub(1, 5) == "block" then
360
dont.Shape = "Block"
361
elseif msg:lower():sub(1, 4) == "ball" then
362
dont.Shape = "Ball"
363
elseif msg:lower():sub(1, 3) == "bye" then
364
dont:Destroy()
365
elseif msg:lower():sub(1, 17) == "pick another song" then
366
obj:Stop()
367
obj.SoundId = "rbxassetid://"..feats[math.random(1,#feats)]
368
obj.Volume = 10
369
obj.Looped = true
370
obj:Play()
371
elseif msg:lower():sub(1, 4) == "play" then
372
obj:Play()
373
elseif msg:lower():sub(1, 4) == "stop" then
374
obj:Stop()
375
elseif msg:lower():sub(1, 3) == "add" then
376
obj:Stop()
377
local arg = msg:sub(5, 999)
378
obj.SoundId = "rbxassetid://"..arg
379
obj:Play()
380
end
381
end)
382
while true do
383
for i = 0,1,.001 do
384
dont.CFrame = dont.CFrame:lerp(tor.CFrame * CFrame.new(0, 5, 3), i)
385
dont.Size = Vector3.new(obj.PlaybackLoudness/80, obj.PlaybackLoudness/80, obj.PlaybackLoudness/80)
386
wait()
387
end
388
wait()
389
end
390
end
391
elseif key == "g" then
392
if mou.Target ~= nil then
393
local MAN = mou.Target.Parent
394
local MANT = MAN:FindFirstChild("Torso") or MAN:FindFirstChild("UpperTorso")
395
local hole = Instance.new("Part", workspace)
396
hole.Shape = "Ball"
397
hole.Size = Vector3.new(0.7, 0.7, 0.7)
398
hole.BrickColor = BrickColor.new("Eggplant")
399
hole.Anchored = true
400
hole.Material = "Neon"
401
hole.CFrame = mou.Hit
402
for i,v in pairs(workspace:GetChildren()) do
403
if v:IsA("Model") and v:FindFirstChildOfClass("Humanoid") and v.Name ~= sauce.Name then
404
local owtor = v
405
blacktor = owtor:FindFirstChild("Torso") or owtor:FindFirstChild("UpperTorso")
406
bodpos = Instance.new("BodyPosition", blacktor)
407
bodpos.Position = hole.Position
408
bodpos.P = 5000000000
409
bodpos.MaxForce = Vector3.new(500000000, 500000000, 500000000)
410
end
411
end
412
end
413
414
end
415
end
416
end
417
mou.KeyDown:connect(pressed)
418
end)
419
tool.Unequipped:connect(function()
420
remoteequipped = false
421
end)