explain it more?
textToShow = ""
function showTextDx()
dxDrawText(textToShow, 0, 70/100*height, width, 0, tocolor(255, 30, 30, 255), 1.5, "default-bold", "center", "top", false, false, false)
end
addEventHandler("onClientFrame", getRootElement(), showTextDx)
setTimer(function()
--textToShow = tostring(math.random(1,666))
time = getRealTime()
hours = time.hour
minutes = time.minute
textToShow = hours..':'..minutes
end, 500)
something like that?
this is completly unuseful, just wanted to show you what i mean
edit:
edited, maybe you actually meant that (thx JustDance)