Advertisement
Vexera2

Untitled

Apr 29th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. local char = game.Players.LocalPlayer.Character
  2. local Torso = char.Torso
  3. local LArm = char["Left Arm"]
  4. local LLeg = char["Left Leg"]
  5. local RArm = char["Right Arm"]
  6. local RLeg = char["Right Leg"]
  7. local Head = char.Head
  8. local mouse = game.Players.LocalPlayer:GetMouse()
  9.  
  10. function Za_warudo()
  11. local s = Instance.new("Sound", char.Torso)
  12. s.SoundId = "rbxassetid://1404933085"
  13. s.Playing = true
  14. s.Volume = 1
  15. wait(2)
  16. Torso.Anchored = true
  17. LArm.Anchored = true
  18. LLeg.Anchored = true
  19. RArm.Anchored = true
  20. RLeg.Anchored = true
  21. Head.Anchored = true
  22.  
  23. char.Humanoid.MaxHealth = 999999999
  24. char.Humanoid.Health = 999999999
  25. wait(2)
  26. s:Destroy()
  27. end
  28.  
  29. function Za_nope()
  30. Torso.Anchored = false
  31. LArm.Anchored = false
  32. LLeg.Anchored = false
  33. RArm.Anchored = false
  34. RLeg.Anchored = false
  35. Head.Anchored = false
  36.  
  37. char.Humanoid.MaxHealth = 100
  38. char.Humanoid.Health = 50
  39. wait(2)
  40. char.Humanoid.Health = 100
  41. end
  42.  
  43. mouse.KeyDown:connect(function(key)
  44. if key == "q" then
  45. Za_warudo()
  46. end
  47. end)
  48.  
  49. mouse.KeyDown:connect(function(key)
  50. if key == "e" then
  51. Za_nope()
  52. end
  53. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement