--main()
local font = renderCreateFont("Century Gothic", 12, 5)
local size = {getScreenResolution()}
while true do
wait(0)
renderFontDrawText(font, "Time: " .. os.date('%H:%M:%S:' .. tostring(os.clock()):match('%.(.+)')), size[1]/2, size[2]/2, -1)
end
--end