Advertisement
Vexera2

Untitled

Apr 29th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.32 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. local a = Instance.new("ForceField", char.Torso)
  11. a.Visible = false
  12.  
  13. function Za_warudo()
  14. local s = Instance.new("Sound", char.Torso)
  15. s.SoundId = "rbxassetid://1404933085"
  16. s.Playing = true
  17. s.Volume = 2
  18. wait(2)
  19. Torso.Anchored = true
  20. LArm.Anchored = true
  21. LLeg.Anchored = true
  22. RArm.Anchored = true
  23. RLeg.Anchored = true
  24. Head.Anchored = true
  25.  
  26. char.Humanoid.MaxHealth = 999999999
  27. char.Humanoid.Health = 999999999
  28. local a = Instance.new("ForceField", char.Torso)
  29. a.Visible = false
  30. wait()
  31. char.Humanoid.Name = "lololo"
  32.  
  33. wait(2)
  34. s:Destroy()
  35. end
  36.  
  37. function Za_nope()
  38. a:Destroy()
  39. char.lololo.Name = "Humanoid"
  40.  
  41. Torso.Anchored = false
  42. LArm.Anchored = false
  43. LLeg.Anchored = false
  44. RArm.Anchored = false
  45. RLeg.Anchored = false
  46. Head.Anchored = false
  47.  
  48. char.lololo.MaxHealth = 100
  49. char.lololo.Health = 50
  50. wait()
  51. char.lololo.Name = "Humanoid"
  52. end
  53.  
  54. mouse.KeyDown:connect(function(key)
  55. if key == "q" then
  56. Za_warudo()
  57. end
  58. end)
  59.  
  60. mouse.KeyDown:connect(function(key)
  61. if key == "e" then
  62. Za_nope()
  63. end
  64. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement