Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- https://web.roblox.com/games/3550422594/Script-Fighting-FE
- local Player = game.Players.LocalPlayer
- local Character = Player.Character
- local Humanoid = Character.Humanoid
- print('Godmode working.')
- Humanoid.MaxHealth = 10000
- Humanoid.Health = Humanoid.MaxHealth / 1
- Humanoid.HealthChanged:connect(function()
- if Humanoid.Health < 10000 then
- Humanoid.Health = Humanoid.MaxHealth
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement