How to higher starter humanoid hp?

how to higher starter humanoid hp?

You put a Humanoid in “game.StarterPlayer” then change the MaxHealth value of that. You can also change every other value of the humanoid by using that.

3 Likes

You can add a humanoid in game.StarterPlayer.StarterCharacterScripts! There you can modify your player’s HP!

There are a few methods.
One is to put a script which changes the Humanoid Health when it spawns in.

Second is to put a StarterHumanoid in StarterPlayer or the StarterCharacter.Humanoid and Modify that.

Third is just to select StarterPlayer then go to properties and the change the starting health there.

local Players = game:GetService("Players")

Players.PlayerAdded:Connect(function(Player)
	Player.CharacterAdded:Connect(function(Character)
		local Humanoid = Character:WaitForChild("Humanoid")
		Humanoid.MaxHealth *= 2 --increase max health by 2 (from 100 to 200)
		Humanoid.Health = Humanoid.MaxHealth --set health to maximum
	end)
end)

Doing this in a script is relatively simple.