I'm trying to make a countdown script, but when I start it up, but it counts down from 10 to 0 in less than a second....
Script :
for i=10,1,-1 do print(i) end
for i=10,1,-1 do wait(1) -- this is very important. It puts a wait time in between each time it loops. print(i) end