Countdown timer 00:00:00, change framerate and startseconds for your needs.
Countdown timer 00:00
:framerate=30;startseconds=10; startcounter=startseconds*framerate;hours=floor((startcounter-time)/framerate/60/60)%60;minutes=floor((startcounter-time)/framerate/60)%60; seconds=floor((startcounter-time)/framerate)%60; return Text(string.format("%02.f",hours)..":"..string.format("%02.f",minutes)..":"..string.format("%02.f",seconds));
Countdown timer 00:00
:framerate=30;startseconds=10; startcounter=startseconds*framerate;minutes=floor((startcounter-time)/framerate/60)%60; seconds=floor((startcounter-time)/framerate)%60; return Text(string.format("%02.f",minutes)..":"..string.format("%02.f",seconds));