انا أبي الدي أكس يجي بعد ما يركب السيارة أججل 
سويت كذا ما زبط 
 
function T() 
local num = 133 
addEventHandler("onClientRender", root, 
    function() 
        dxDrawText("Time :", 202, 192, 656, 222, tocolor(208, 224, 30, 255), 1.00, "bankgothic", "left", "top", false, false, true, false, false) 
        dxDrawText(tostring( num ), 403, 272, 458, 299, tocolor(208, 224, 30, 255), 1.00, "bankgothic", "left", "top", false, false, true, false, false) 
    end  
) 
end 
addEventHandler("onVehicleEnter", root, T) 
  
  
Timer = setTimer( 
function () 
    num = num - 1 
    if num <= -1 then 
     killTimer(Timer) 
     num = 0 
    end 
end,1000,0)