Advertisement
Guest User

God Mode for script fighting

a guest
Mar 24th, 2020
3,442
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. https://web.roblox.com/games/3550422594/Script-Fighting-FE
  2.  
  3. local Player = game.Players.LocalPlayer
  4. local Character = Player.Character
  5. local Humanoid = Character.Humanoid
  6.  
  7. print('Godmode working.')
  8.  
  9. Humanoid.MaxHealth = 10000
  10. Humanoid.Health = Humanoid.MaxHealth / 1
  11.  
  12. Humanoid.HealthChanged:connect(function()
  13. if Humanoid.Health < 10000 then
  14. Humanoid.Health = Humanoid.MaxHealth
  15. end
  16. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement