local healthIf I m not wrong 0xFFFF00 should be yellow, but it come out blu, what's the right code for yellow?
graphics.addDrawFunc("draw()", 0)
function drawHealthBar()
health = (Values["MC_health"].Int / 100) * 300
-- + --
function draw() graphics.drawBox(319, 84, health, 40, 0xFFFF00, 1) end
end