RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make me a health bar gui, the red goes down when health is low and goes up when health is high"
-- local script local player = game.Players.LocalPlayer local healthBar = script.Parent player.CharacterAdded:Connect(function(character) local humanoid = character:WaitForChild("Humanoid") local health = humanoid.Health local maxHealth = humanoid.MaxHealth while true do local currentHealth = humanoid.Health local percentHealth = currentHealth / maxHealth healthBar.Size = UDim2.new(percentHealth, 0, 1, 0) wait() end end)