RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a health bar"
-- local script (StarterGui) local player = game.Players.LocalPlayer local screenGui = Instance.new("ScreenGui", player.PlayerGui) local healthBar = Instance.new("Frame", screenGui) healthBar.BackgroundColor3 = Color3.fromRGB(255, 0, 0) healthBar.Size = UDim2.new(0, 200, 0, 20) healthBar.Position = UDim2.new(0.5, -100, 0.9, -20)