`local HealthDisplay = game.ServerStorage:WaitForChild("HealthGui")
local HealthText = HealthDisplay.TextLabel
-------------------------><CLONE DISPLAY><-----------------------------
game.Players.PlayerAdded:Connect(function(plr)
local character = plr.Character
local head = character:FindFirstChild("Head")
local humanoid = character.FindFirstChild("Humanoid")
local Display = HealthDisplay:Clone()
Display.Parent = head
local HealthText = Display:WaitForChild("TextLabel")
HealthText.Text = humanoid.Health.Value.." HP"
if humanoid.Health.Value >= 60 then
HealthText.TextColor3 = Color3. fromRGB(99, 255, 99)
end
if humanoid.Health.Value <= 60 then
HealthText.TextColor3 = Color3. fromRGB(255, 253, 130)
end
if humanoid.Health.Value <= 30 then
HealthText.TextColor3 = Color3. fromRGB(255, 52, 55)
end
end)`
** You are now Level 4! **