AgentVK

Pow?

Jan 3rd, 2018
239
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.81 KB | None | 0 0
  1. --Beh Rufus14
  2. POW = Instance.new("Sound", game.Players.LocalPlayer.Character.Head)
  3. POW.SoundId = "http://roblox.com/asset?id=135362176"
  4. plr = game.Players.LocalPlayer
  5. mouse = plr:GetMouse()
  6. function key(key)
  7. key = key:lower()
  8. if key == "z" then
  9. for i = 1,5 do
  10. wait(0.01)
  11. plr.Character.Torso["Right Shoulder"].C1 = plr.Character.Torso["Right Shoulder"].C1 * CFrame.Angles(0,0,-0.2)
  12. end
  13. for i = 1,2 do
  14. wait(0.01)
  15. plr.Character.Torso["Right Shoulder"].C1 = plr.Character.Torso["Right Shoulder"].C1 * CFrame.Angles(0,0,-0.1)
  16. end
  17. POW:Play()
  18. local BOOM = Instance.new("Explosion", workspace)
  19. BOOM.Position = plr.Character["Right Arm"].Position
  20. BOOM.Position = BOOM.Position + Vector3.new(0,0,-59)
  21. local BOOM1 = Instance.new("Explosion", workspace)
  22. BOOM1.Position = plr.Character["Right Arm"].Position
  23. BOOM1.Position = BOOM1.Position + Vector3.new(0,59,0)
  24. local BOOM2 = Instance.new("Explosion", workspace)
  25. BOOM2.Position = plr.Character["Right Arm"].Position
  26. BOOM2.Position = BOOM2.Position + Vector3.new(-59,0,0)
  27. local BOOM3 = Instance.new("Explosion", workspace)
  28. BOOM3.Position = plr.Character["Right Arm"].Position
  29. BOOM3.Position = BOOM3.Position + Vector3.new(59,0,0)
  30. local BOOM4 = Instance.new("Explosion", workspace)
  31. BOOM4.Position = plr.Character["Right Arm"].Position
  32. BOOM4.Position = BOOM4.Position + Vector3.new(0,0,59)
  33. wait(2)
  34. BOOM:destroy()
  35. BOOM1:destroy()
  36. BOOM2:destroy()
  37. BOOM3:destroy()
  38. BOOM4:destroy()
  39. for i = 1,5 do
  40. wait(0.01)
  41. plr.Character.Torso["Right Shoulder"].C1 = plr.Character.Torso["Right Shoulder"].C1 * CFrame.Angles(0,0,0.2)
  42. end
  43. for i = 1,2 do
  44. wait(0.01)
  45. plr.Character.Torso["Right Shoulder"].C1 = plr.Character.Torso["Right Shoulder"].C1 * CFrame.Angles(0,0,0.1)
  46. end
  47. end
  48. end
  49. mouse.KeyDown:connect(key)
Add Comment
Please, Sign In to add comment