View difference between Paste ID: NZ0tpgVN and LhUP4CVZ
SHOW: | | - or go back to the newest paste.
1
--//====================================================\\--
2
--|| CREATED BY ???, HARD EDIT BY Magermash
3
--\\====================================================//--
4
5
6
7
8
plr = game.Players.LocalPlayer
9-
local Hat = char:FindFirstChild("Hat_F") or Instance.new("Hat")
9+
10-
Hat.AttachmentPos = Vector3.new(0, 0.46, 0.22)
10+
eye2 = Instance.new("Part", workspace)
11-
Hat.Name = "Hat_F"
11+
eye2.Anchored = false
12-
local Handle = Hat:FindFirstChild("Handle") or Instance.new("Part", Hat)
12+
eye2.Parent = hed
13-
if Handle.Name ~= "Handle" then
13+
eye2.TopSurface = 0
14-
  Handle.Size = Vector3.new(1, 1, 1)
14+
eye2.BrickColor = BrickColor.new("Royal purple")
15
eye2.Material = "Neon"
16-
Handle.BottomSurface = 0
16+
eye2.BottomSurface = 0
17-
Handle.Name = "Handle"
17+
eye2m = Instance.new("SpecialMesh", eye2)
18-
Handle.TopSurface = 0
18+
eye2m.MeshId = "rbxassetid://431017802"
19-
Handle.Locked = 1
19+
eye2m.TextureId = "rbxassetid://431017809"
20-
local Mesh = Hat:FindFirstChild("Mesh") or Instance.new("SpecialMesh", Handle)
20+
eye2m.Scale = Vector3.new(0.05, 0.05, 0.05)
21-
Mesh.TextureId = "http://www.roblox.com/asset/?id=431017802"
21+
ogsize = eye2m.Scale
22-
Mesh.MeshId = "http://www.roblox.com/asset/?id=431017809"
22+
weld = Instance.new("Weld", hed)
23-
Mesh.Scale = Vector3.new(1.1, 1.1, 1.1)
23+
weld.Part0 = eye2
24
weld.Part1 = hed
25
weld.Name = "eye2Weld"
26
weld.C1 = CFrame.new(0,.45,0.05)
27-
local p = game.Players.LocalPlayer
27+
28-
local char = p.Character
28+
29-
local hed = char.Head
29+
30-
local LocalPlayer = p
30+
31
naeeym.Size = UDim2.new(0,100,0,40)
32
naeeym.StudsOffset = Vector3.new(0,5,0)
33
naeeym.Adornee = char.Head
34
local tecks = Instance.new("TextLabel",naeeym)
35
tecks.BackgroundTransparency = 1
36
tecks.BorderSizePixel = 0
37
tecks.Text = LocalPlayer.Name
38
tecks.Font = "ArialBold"
39
tecks.FontSize = "Size24"
40
tecks.TextStrokeTransparency = 0
41
tecks.TextStrokeColor3 = Color3.new(0,0,0)
42
tecks.TextColor3 = Color3.new(255,255,255)
43
tecks.Size = UDim2.new(1,0,0.5,0)
44
45
local Player = game.Players.localPlayer
46
local Character = p.Character
47
local LeftArm2 = Character["Left Arm"]
48
local RightArm2 = Character["Right Arm"]
49
local LeftLeg2 = Character["Left Leg"]
50
local RightLeg2 = Character["Right Leg"]
51
local Head2 = Character.Head
52
local Torso2 = Character.Torso
53
54
--created by SoldierJoao
55
--Credits to metabee for the knives edit
56
cut = Instance.new("Sound", Character)
57
cut.SoundId = "https://www.roblox.com/asset/?id=97095069"
58
cut.Volume = 1.5
59
thri = Instance.new("Sound", Character)
60
thri.SoundId = "https://www.roblox.com/asset/?id=186311262"
61
thri.Volume = 2.5
62
WRY = Instance.new("Sound", Character)
63
WRY.SoundId = "https://www.roblox.com/asset/?id=276152532"
64
WRY.Volume = 5
65
66
local Players=game:service'Players'
67
local Player=Players.LocalPlayer
68
local Mouse=Player:GetMouse''
69
local RenderStepped=game:service'RunService'.RenderStepped
70
71
local MeshId='http://www.roblox.com/asset?id=430330296'
72
local TextureId='http://www.roblox.com/asset/?id=430330316'
73
74
local BeeSpeed= 100
75
76
local QHold=false
77
local EHold=false
78
79
Mouse.Button1Down:connect(function()
80
cut:Play()
81
if Mouse.Target then
82
local Bee=Instance.new('Part',Player.Character)
83
Bee.CanCollide=false
84
Bee.Size=Vector3.new(2,2,2)
85
Bee.CFrame=Player.Character.Torso.CFrame
86
local BeeMesh=Instance.new('SpecialMesh',Bee)
87
BeeMesh.MeshType='FileMesh'
88
BeeMesh.MeshId=MeshId
89
BeeMesh.TextureId=TextureId
90
BeeMesh.Scale=Vector3.new(1,1,1)
91
local BodyVel=Instance.new('BodyVelocity',Bee)
92
BodyVel.maxForce=Vector3.new(math.huge,math.huge,math.huge)
93
local BodyGyro=Instance.new('BodyGyro',Bee)
94
BodyGyro.maxTorque=Vector3.new(math.huge,math.huge,math.huge)
95
BodyGyro.P=2e4
96
coroutine.wrap(function()
97
RenderStepped:connect(function()
98
BodyGyro.cframe=CFrame.new(Bee.Position,Mouse.Hit.p)
99
BodyVel.velocity=Bee.CFrame.lookVector*BeeSpeed
100
end)
101
end)()
102
Bee.Touched:connect(function(p)
103
if p.Parent~=Player.Character and p.Parent:FindFirstChild'Humanoid'then
104
p.Parent:BreakJoints()
105
Bee:Destroy''
106
thri:Play()
107
end
108
end)
109
end
110
end)
111
112
113
Mouse.KeyDown:connect(function(k)
114
local Key=k:lower''
115
if Key=='q'then
116
QHold=true
117
elseif Key=='e'then
118
EHold=true
119
end
120
end)
121
122
Mouse.KeyUp:connect(function(k)
123
local Key=k:lower''
124
if Key=='q'then
125
QHold=false
126
elseif Key=='e'then
127
EHold=false
128
end
129
end)
130
131
coroutine.wrap(function()
132
RenderStepped:connect(function()
133
if QHold then
134
if BeeSpeed>0 then
135
BeeSpeed=BeeSpeed-1
136
end
137
elseif EHold then
138
BeeSpeed=BeeSpeed+1
139
end
140
end)
141
end)()
142
143
144
145
146
mse = Player:GetMouse()
147
148
sound = Instance.new("Sound", Character)
149
sound.SoundId = "https://www.roblox.com/asset/?id=290807425"
150
sound.Volume = 2.5
151
sound2 = Instance.new("Sound", Character)
152
sound2.SoundId = "https://www.roblox.com/asset/?id=290810519"
153
sound2.Volume = 2.5
154
sound3 = Instance.new("Sound", Character)
155
sound3.SoundId = "https://www.roblox.com/asset/?id=290807377"
156
sound3.Volume = 1.8
157
sound4 = Instance.new("Sound", Character)
158
sound4.SoundId = "https://www.roblox.com/asset/?id=290807397"
159
sound4.Volume = 2
160
TSTheme = Instance.new("Sound", Character)
161
TSTheme.SoundId = "https://www.roblox.com/asset/?id=172374380"
162
TSTheme.Volume = 2
163
canworld = true
164
mse.KeyDown:connect(function(key)
165
	key = key:lower()
166
	if key == "t" then
167
		if canworld == false then return end
168
		if canworld then
169
		canworld = false
170
		sound3:Play()
171
tecks.Text = "THE WORLD STOP TIME!"
172
wait(2)
173
tecks.Text = LocalPlayer.Name
174
		sound:Play()
175
		sound4:Play()
176
		TSTheme:Play()
177
178
		local function spawnpart()
179
		sphere = Instance.new("Part")
180
		--game.Debris:AddItem(sphere,3)
181
		local sm = Instance.new("SpecialMesh", sphere)
182
		sm.MeshType = "Sphere"
183
		sphere.Transparency = 0.5
184
		sphere.Anchored = true
185
		sphere.CanCollide = false
186
		sphere.Material = "Neon"
187
		sphere.BrickColor = BrickColor.new("Black")
188
		end
189
		
190
		local function weld(lol)
191
			local weld = Instance.new("Weld", Player.Character.Torso)
192
			weld.Part0 = Player.Character.Torso
193
			weld.Part1 = lol
194
			weld.C0 = Player.Character.Torso.CFrame:inverse()
195
			weld.C1 = lol.CFrame:inverse()
196
		end
197
		wait()
198
		spawnpart()
199
			for i, v in pairs(game.Players:GetChildren()) do
200
			t = v.Character:FindFirstChild("Torso")
201
			if t then
202
				t.Anchored = true
203
				Player.Character:FindFirstChild("Torso").Anchored = false
204
			end
205
			RA = v.Character:FindFirstChild("Right Arm")
206
			if RA then
207
				RA.Anchored = true
208
				Player.Character:FindFirstChild("Right Arm").Anchored = false
209
			end
210
			LA = v.Character:FindFirstChild("Left Arm")
211
			if LA then
212
				LA.Anchored = true
213
				Player.Character:FindFirstChild("Left Arm").Anchored = false
214
			end
215
			RL = v.Character:FindFirstChild("Right Leg")
216
			if RL then
217
				RL.Anchored = true
218
				Player.Character:FindFirstChild("Right Leg").Anchored = false
219
			end
220
			LL = v.Character:FindFirstChild("Left Leg")
221
			if LL then
222
				LL.Anchored = true
223
				Player.Character:FindFirstChild("Left Leg").Anchored = false
224
			end
225
		end
226
		weld(sphere)
227
		cce = Instance.new("ColorCorrectionEffect", game.Lighting)
228
		cce.Saturation = -5
229
		--game.Debris:AddItem(cce, 5)
230
		sphere.Parent = Character.Torso
231
		for i = 1,3 do
232
			sphere.Size = sphere.Size + Vector3.new(50,50,50)
233
			wait()
234
			end
235
wait()
236
                        sphere:Destroy()
237
BeeSpeed = 0
238
		cce.Saturation = -0.1
239
		wait(0.3)
240
		cce.Saturation = -0.2
241
		wait(0.3)
242
		cce.Saturation = -0.3
243
		wait(0.2)
244
	        cce.Saturation = -1.5
245
                wait()
246
		end
247
	end
248
end
249
)
250
251
tecks.Text = LocalPlayer.Name
252
253
mse.KeyDown:connect(function(key)
254
	key = key:lower()
255
	if key == "y" then
256
canworld = true
257
tecks.Text = "Time continues moving again."
258
		sound2:Play()
259
wait()
260
BeeSpeed = 1
261
		cce.Saturation = -1.3
262
		wait(0.5)
263
BeeSpeed = 1.2
264
		cce.Saturation = -0.5
265
		wait(0.5)
266
BeeSpeed = 1.4
267
		cce.Saturation = -0.4
268
		wait(0.3)
269
BeeSpeed = 1.5
270
		cce.Saturation = -0.2
271
		wait(0.2)
272
	        cce.Saturation = 0
273
274
		for i, v in pairs(game.Players:GetChildren()) do
275
		t = v.Character:FindFirstChild("Torso")
276
			if t then
277
				t.Anchored = false
278
			end
279
			RA = v.Character:FindFirstChild("Right Arm")
280
			if RA then
281
				RA.Anchored = false
282
			end
283
			LA = v.Character:FindFirstChild("Left Arm")
284
			if LA then
285
				LA.Anchored = false
286
			end
287
			RL = v.Character:FindFirstChild("Right Leg")
288
			if RL then
289
				RL.Anchored = false
290
			end
291
			LL = v.Character:FindFirstChild("Left Leg")
292
			if LL then
293
				LL.Anchored = false
294
			end
295
		end
296
BeeSpeed = 100
297
tecks.Text = LocalPlayer.Name
298
TSTheme:Stop()
299
end
300
end)
301
302
303
wait(1)
304
run = Instance.new("Sound", game.Players.LocalPlayer.Character.Torso)
305
run.SoundId = "rbxassetid://142665235"
306
run.PlaybackSpeed = 1.3
307
run.Looped = true
308
run1 = Instance.new("Sound", game.Players.LocalPlayer.Character.Torso)
309
run1.SoundId = "rbxassetid://142665235"
310
run1.Looped = true
311
run1.Volume = 0
312
run1:Play()
313
game.Chat:Chat(game.Players.LocalPlayer.Character.Head,"Darude - Sandstorm Mode Activated","Green")
314
game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 30
315
mouse = game.Players.LocalPlayer:GetMouse()
316
local rhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
317
rhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
318
rhandweld.Part1 = game.Players.LocalPlayer.Character["Right Arm"]
319
rhandweld.C0 = CFrame.new(1.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
320
rhandweld.C1 = CFrame.new(0, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
321
local lhandweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
322
lhandweld.Part0 = game.Players.LocalPlayer.Character.Torso
323
lhandweld.Part1 = game.Players.LocalPlayer.Character["Left Arm"]
324
lhandweld.C0 = CFrame.new(-1.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
325
lhandweld.C1 = CFrame.new(0, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
326
local llegweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
327
llegweld.Part0 = game.Players.LocalPlayer.Character.Torso
328
llegweld.Part1 = game.Players.LocalPlayer.Character["Left Leg"]
329
llegweld.C0 = CFrame.new(-0.5, -1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
330
llegweld.C1 = CFrame.new(-0, 1, 0, -0, -0, -1, 0, 1, 0, 1, 0, 0)
331
local rlegweld = Instance.new("Weld", game.Players.LocalPlayer.Character.Torso)
332
rlegweld.Part0 = game.Players.LocalPlayer.Character.Torso
333
rlegweld.Part1 = game.Players.LocalPlayer.Character["Right Leg"]
334
rlegweld.C0 = CFrame.new(0.5, -1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
335
rlegweld.C1 = CFrame.new(0, 1, 0, 0, 0, 1, 0, 1, 0, -1, -0, -0)
336
runnin = false
337
function walk(key)
338
    key = key:lower()
339
    if key == "w" or key == "a" or key == "s" or key == "d" then
340
        if not runnin then
341
            runnin = true
342
            run:Play()
343
            run1.Volume = 4
344
            smoke = Instance.new("Smoke", game.Players.LocalPlayer.Character["Left Leg"])
345
            smoke1 = Instance.new("Smoke", game.Players.LocalPlayer.Character["Right Leg"])
346
            smoke.Color = Color3.fromRGB(239, 229, 86)
347
            smoke1.Color = Color3.fromRGB(239, 229, 86)
348
            while runnin do
349
                for i = 0,1 , 0.3 do
350
                    wait()
351
                    game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint.C0 = game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint.C0 * CFrame.new():lerp(CFrame.Angles(-0.1,0,0),i)
352
                    rhandweld.C0 = rhandweld.C0 * CFrame.new():lerp(CFrame.Angles(0,0,0.8),i)
353
                    lhandweld.C0 = lhandweld.C0 * CFrame.new():lerp(CFrame.Angles(0,0,0.8),i)
354
                    rlegweld.C0 = rlegweld.C0 * CFrame.new():lerp(CFrame.Angles(0,0,-0.8),i)
355
                    llegweld.C0 = llegweld.C0 * CFrame.new():lerp(CFrame.Angles(0,0,-0.8),i)
356
                end
357
                for i = 0,1 , 0.3 do
358
                    wait()
359
                    game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint.C0 = game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint.C0 * CFrame.new():lerp(CFrame.Angles(0.2,0,0),i)
360
                    rhandweld.C0 = rhandweld.C0 * CFrame.new():lerp(CFrame.Angles(0,0,-1.6),i)
361
                    lhandweld.C0 = lhandweld.C0 * CFrame.new():lerp(CFrame.Angles(0,0,-1.6),i)
362
                    rlegweld.C0 = rlegweld.C0 * CFrame.new():lerp(CFrame.Angles(0,0,1.6),i)
363
                    llegweld.C0 = llegweld.C0 * CFrame.new():lerp(CFrame.Angles(0,0,1.6),i)
364
                end
365
                for i = 0,1 , 0.3 do
366
                    wait()
367
                    game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint.C0 = game.Players.LocalPlayer.Character.HumanoidRootPart.RootJoint.C0 * CFrame.new():lerp(CFrame.Angles(-0.1,0,0),i)
368
                    rhandweld.C0 = rhandweld.C0 * CFrame.new():lerp(CFrame.Angles(0,0,0.8),i)
369
                    lhandweld.C0 = lhandweld.C0 * CFrame.new():lerp(CFrame.Angles(0,0,0.8),i)
370
                    rlegweld.C0 = rlegweld.C0 * CFrame.new():lerp(CFrame.Angles(0,0,-0.8),i)
371
                    llegweld.C0 = llegweld.C0 * CFrame.new():lerp(CFrame.Angles(0,0,-0.8),i)
372
                end
373
            end
374
        end
375
    end
376
end
377
mouse.KeyDown:connect(walk)
378
function stahp(key)
379
    key = key:lower()
380
    if key == "w" or key == "a" or key == "s" or key == "d" then
381
        if runnin then
382
            run:Stop()
383
            smoke:destroy()
384
            smoke1:destroy()
385
            run1.Volume = 0
386
            runnin = false
387
        end
388
    end
389
end
390
mouse.KeyUp:connect(stahp)
391
function rip()
392
    while true do
393
    runnin = true
394
    game:GetService("RunService"):wait()
395
    end
396
end
397
game.Players.LocalPlayer.Character.Humanoid.Died:connect(rip)
398
399
local Music = SFX(190819252)
400
Music.Looped = true;
401
wait(1)
402
Music:Play();
403
-- ~CL 2016
404
405
CV="Black"
406
407
	p = game.Players.LocalPlayer
408
	char = p.Character
409
	local txt = Instance.new("BillboardGui", char)
410
	txt.Adornee = char .Head
411
	txt.Name = "_status"
412
	txt.Size = UDim2.new(2, 0, 1.2, 0)
413
	txt.StudsOffset = Vector3.new(-9, 8, 0)
414
	local text = Instance.new("TextLabel", txt)
415
	text.Size = UDim2.new(10, 0, 7, 0)
416
	text.FontSize = "Size24"
417
	text.TextScaled = true
418
	text.TextTransparency = 0
419
	text.BackgroundTransparency = 1 
420
	text.TextTransparency = 0
421
	text.TextStrokeTransparency = 1
422
	text.Font = "Arcade"
423
	text.TextStrokeColor3 = Color3.new(255,255,0)
424
425
	v=Instance.new("Part")
426
	v.Name = "ColorBrick"
427
	v.Parent=p.Character
428
	v.FormFactor="Symmetric"
429
	v.Anchored=true
430
	v.CanCollide=false
431
	v.BottomSurface="Smooth"
432
	v.TopSurface="Smooth"
433
	v.Size=Vector3.new(10,50,3)
434
	v.Transparency=1
435
	v.CFrame=char.Torso.CFrame
436
	v.BrickColor=BrickColor.new(CV)
437
	v.Transparency=1
438
	text.TextColor3 = Color3.new(0,255,255)
439
	v.Shape="Block"
440
	text.Text = "Thomas Knife Thrower By:Magermash"
441
442
443
--By Rufus14 (now you can show a middle finger to you foes XDDD)
444
fuckin = false
445
woosh = Instance.new("Sound", game.Players.LocalPlayer.Character["Right Arm"])
446
woosh.SoundId = "rbxassetid://138097048"
447
haha = Instance.new("Sound", game.Players.LocalPlayer.Character["Right Arm"])
448
haha.SoundId = "rbxassetid://525166232"
449
haha1 = Instance.new("Sound", game.Players.LocalPlayer.Character["Right Arm"])
450
haha1.SoundId = "rbxassetid://411464763"
451
haha11 = Instance.new("Sound", game.Players.LocalPlayer.Character["Right Arm"])
452
haha11.SoundId = "rbxassetid://617500399"
453
haha111 = Instance.new("Sound", game.Players.LocalPlayer.Character["Right Arm"])
454
haha111.SoundId = "rbxassetid://138093488"
455
haha1111 = Instance.new("Sound", game.Players.LocalPlayer.Character["Right Arm"])
456
haha1111.SoundId = "rbxassetid://135362176"
457
mouse = game.Players.LocalPlayer:GetMouse()
458
function fuck(key)
459
	key = key:lower()
460
	if key == "e" and not fuckin then
461
		fuckin = true
462
		for i = 1,2 do
463
			wait()
464
			game.Players.LocalPlayer.Character.Torso["Right Shoulder"].C0 = game.Players.LocalPlayer.Character.Torso["Right Shoulder"].C0 * CFrame.Angles(0,0,0.05)
465
		end
466
		woosh:Play()
467
		for i = 1,5 do
468
			wait()
469
			game.Players.LocalPlayer.Character.Torso["Right Shoulder"].C0 = game.Players.LocalPlayer.Character.Torso["Right Shoulder"].C0 * CFrame.Angles(0,0,0.4)
470
		end
471
		for i = 1,2 do
472
			wait()
473
			game.Players.LocalPlayer.Character.Torso["Right Shoulder"].C0 = game.Players.LocalPlayer.Character.Torso["Right Shoulder"].C0 * CFrame.Angles(0,0,0.1)
474
		end
475
		for i = 1,2 do
476
			wait()
477
			game.Players.LocalPlayer.Character.Torso["Right Shoulder"].C0 = game.Players.LocalPlayer.Character.Torso["Right Shoulder"].C0 * CFrame.Angles(0,0,0.05)
478
		end
479
		local laughmath = math.random(1,5)
480
		if laughmath == 1 then
481
			haha:Play()
482
		end
483
		if laughmath == 2 then
484
			haha1.TimePosition = 0.8
485
			haha1:Play()
486
		end
487
		if laughmath == 3 then
488
			haha11:Play()
489
		end
490
		if laughmath == 4 then
491
			haha111:Play()
492
		end
493
		if laughmath == 5 then
494
			haha1111:Play()
495
		end
496
		local fin = Instance.new("Part", game.Players.LocalPlayer.Character)
497
		fin.CanCollide = false
498
		fin:BreakJoints()
499
		fin.Size = Vector3.new(0.23, 0.2, 1)
500
		fin.TopSurface = "Smooth"
501
		fin.BottomSurface = "Smooth"
502
		fin.BrickColor = game.Players.LocalPlayer.Character["Right Arm"].BrickColor
503
		local weld = Instance.new("Weld", fin)
504
		weld.Part0 = game.Players.LocalPlayer.Character["Right Arm"]
505
		weld.Part1 = fin
506
		weld.C0 = weld.C0 * CFrame.Angles(-0.5,0,0) * CFrame.new(0,-0.8,-1)
507
		for i = 1,2 do
508
			wait()
509
			game.Players.LocalPlayer.Character.Torso["Right Shoulder"].C0 = game.Players.LocalPlayer.Character.Torso["Right Shoulder"].C0 * CFrame.Angles(0,0,-0.1)
510
		end
511
		for i = 1,2 do
512
			wait()
513
			game.Players.LocalPlayer.Character.Torso["Right Shoulder"].C0 = game.Players.LocalPlayer.Character.Torso["Right Shoulder"].C0 * CFrame.Angles(0,0,-0.05)
514
		end
515
		wait(math.random(1.2,2))
516
		for i = 1,2 do
517
			wait()
518
			game.Players.LocalPlayer.Character.Torso["Right Shoulder"].C0 = game.Players.LocalPlayer.Character.Torso["Right Shoulder"].C0 * CFrame.Angles(0,0,0.05)
519
		end
520
		for i = 1,2 do
521
			wait()
522
			game.Players.LocalPlayer.Character.Torso["Right Shoulder"].C0 = game.Players.LocalPlayer.Character.Torso["Right Shoulder"].C0 * CFrame.Angles(0,0,0.1)
523
		end
524
		fin:destroy()
525
		for i = 1,2 do
526
			wait()
527
			game.Players.LocalPlayer.Character.Torso["Right Shoulder"].C0 = game.Players.LocalPlayer.Character.Torso["Right Shoulder"].C0 * CFrame.Angles(0,0,-0.05)
528
		end
529
		for i = 1,2 do
530
			wait()
531
			game.Players.LocalPlayer.Character.Torso["Right Shoulder"].C0 = game.Players.LocalPlayer.Character.Torso["Right Shoulder"].C0 * CFrame.Angles(0,0,-0.1)
532
		end
533
		woosh:Play()
534
		for i = 1,5 do
535
			wait()
536
			game.Players.LocalPlayer.Character.Torso["Right Shoulder"].C0 = game.Players.LocalPlayer.Character.Torso["Right Shoulder"].C0 * CFrame.Angles(0,0,-0.4)
537
		end
538
		for i = 1,2 do
539
			wait()
540
			game.Players.LocalPlayer.Character.Torso["Right Shoulder"].C0 = game.Players.LocalPlayer.Character.Torso["Right Shoulder"].C0 * CFrame.Angles(0,0,-0.05)
541
		end
542
		fuckin = false
543
	end
544
end
545
mouse.KeyDown:connect(fuck)
546
547
char["Body Colors"].HeadColor = BrickColor.new("Neon")
548
char["Body Colors"].TorsoColor = BrickColor.new("Neon")
549
char["Body Colors"].LeftArmColor = BrickColor.new("Neon")
550
char["Body Colors"].RightArmColor = BrickColor.new("Neon")