How can i pause the timer when the seconds = 0 ??
local seconds = 0 function time( ) seconds = seconds-1 secondsT.text= seconds if seconds == 0 then print ("seconds = 0") physics.start() end end local cro = timer.performWithDelay(1000,time, 0 )