I want to make the local player health to 500 they said I can change "humanoid" but I cant find it
To change the humanoid's health, just use a simple script to find the Humanoid and change the Health and MaxHealth value:
local player = game.Players.LocalPlayer -- Gets the player local char = player.Character --Gets the player's character char.Humanoid.MaxHealth = 500 --Sets the MaxHealth of the Humanoid to 500 char.Humanoid.Health = 500 --Sets the health to 500, so that the player is at full HP.
Closed as Not Constructive by TheeDeathCaster, Vulkarin, and cabbler
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?