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