← Back to Quick Activities
⏱️

Timer Race

3 min
Make the fastest countdown you can. Start at 5, count to 0. Then make it count UP. Then count by 2s!

Let's Go!

The Code

-- Countdown
for i = 5, 0, -1 do
    print(i)
    wait(1)
end
print("BOOM!")

Concepts You're Practicing

for loopTextLabel