I got a problem. I want to put this code over some other layers. But it keeps underneath it so nobody can see it.
Any tips?
hook.Add("HUDPaint", "HUDHealth", function()
local maxHealth = LocalPlayer():GetMaxHealth()
local health = math.Clamp(LocalPlayer():Health(), 0, maxHealth)
local healthAng = (health / maxHealth) * 180
draw.Arc( 175, 910, 110, 6, 90, 90 + healthAng, 1, Color( 139,0,0, 200 ) )
end)