Increase humanoid health for all players?

Is there any option anywhere in Studio that would allow me to increase a player’s health from 100 to say 150?

2 Likes

Actually, you can run a script in starter character scripts that sets the health to 150.

1 Like
game.Players.PlayerAdded:connect(function(plr)
    plr.CharacterAdded:connect(function()
    local hum = plr.Character:WaitForChild("Humanoid")
    if hum then
    hum.MaxHealth = 150
 end
end)
7 Likes