Advertisement
MarcAndrew

Untitled

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