You Are Smart ! Thanks ,
but ! , count should be like this "0" , so i edited it and now it works
local n = 0
local count = ""..n..""
addEventHandler ( "onClientRender" , root ,
function()
dxDrawText( count, 44, sh-450, sw, sh, tocolor ( 255, 0, 0, 255 ), 4, "default" )
end)
setTimer ( function() n = n + 1
count = ""..n..""
end, 1000 , 50 )
That's the same thing.