-- # Client Side :
local x,y = guiGetScreenSize( )
local left,top,right,bottom = x*560/1360,y*550/768,x*0/1360,y*30/768
addEventHandler("onClientRender",root,
function()
local RealTime = getRealTime ( )
local hours = RealTime.hour
local minutes = RealTime.minute
local seconds = RealTime.second
local dia = RealTime.monthday
local mes = RealTime.month
local ano = 2013
dxDrawText(hours..":"..minutes..":"..seconds,left,top,right,bottom,tocolor(255,255,255,255),1,"sans")
dxDrawText(dia.."/"..mes.."/"..ano,left,top+10,right,bottom,tocolor(255,255,255,255),1,"sans")
end
)
Try this .