Advertisement
Idirina

God Strength

Nov 22nd, 2017
193
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. wait(1/15)
  2.  
  3. local player = game.Players.LocalPlayer
  4. local character = player.Character
  5. local mouse = player:GetMouse()
  6.  
  7. local forcefield = false
  8.  
  9. local humanoid = character:FindFirstChild("Humanoid")
  10. if humanoid == nil then
  11. return
  12. else
  13. if forcefield == true then
  14. local forcefield = Instance.new("ForceField")
  15. forcefield.Parent = character
  16. end
  17. coroutine.resume(coroutine.create(function()
  18. repeat
  19. humanoid.MaxHealth = "inf"
  20. humanoid.Health = humanoid.MaxHealth
  21. humanoid.WalkSpeed = 50
  22. humanoid.JumpPower = 100
  23. humanoid.PlatformStand = false
  24. wait()
  25. until humanoid == "nil"
  26. wait()
  27. end))
  28. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement