Advertisement
Guest User

ye

a guest
Jun 21st, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.16 KB | None | 0 0
  1. --By 100BlueStarwars
  2. wait(5)
  3. local player = game.Players.LocalPlayer
  4. repeat wait() until player.Character.Humanoid
  5. local humanoid = player.Character.Humanoid
  6. local mouse = player:GetMouse()
  7.  
  8. local anim = Instance.new("Animation")
  9. anim.AnimationId = "http://www.roblox.com/asset/?id=01974988793"
  10.  
  11.  
  12. mouse.KeyDown:connect(function(key)
  13. if key == "b" then
  14. local playAnim = humanoid:LoadAnimation(anim)
  15. playAnim:Play()
  16. humanoid.WalkSpeed = 0
  17. humanoid.MaxHealth = 6436436346346643643634634664364363463466436436346346643643634634664364363463466436436346346.6436436346346643643634634664364363463466436436346346643643634634664364363463466436436346346
  18. humanoid.Health = 6436436346346643643634634664364363463466436436346346643643634634664364363463466436436346346.6436436346346643643634634664364363463466436436346346643643634634664364363463466436436346346
  19. humanoid.JumpPower = 0
  20. game.StarterGui:SetCoreGuiEnabled("Backpack", false)
  21. wait(25)
  22. playAnim:Stop()
  23. humanoid.WalkSpeed = 16
  24. humanoid.Health = 100
  25. humanoid.MaxHealth = 100
  26. humanoid.JumpPower = 50
  27. game.StarterGui:SetCoreGuiEnabled("Backpack", true)
  28. end
  29. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement