Advice for a Health system

Hello I am making a health system
I made the GUI:


But I dont know what to do next so if someone could advice me it would be great!
(“remember I am not asking for full made scripts or for whole systems just for advices”)

1 Like

Consider this tutorial (and many more on YouTube):

2 Likes

If you’re trying to make a health bar, this might help you

The only advice I can give you is try to look through free models, take them apart, and make them work for your game.

something like this would work (as a local script under the frame for health):

local char = game.Players.LocalPlayer.Character
char:WaitForChild("Humanoid").HealthChanged:Connect(function()
	script.Parent.Size = UDim2.new(char.Humanoid.Health / 100, 0, script.Parent.Size.Y.Scale, 0)
end)
1 Like