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 :
1 | for i = 10 , 1 ,- 1 do |
2 | print (i) |
3 | end |
1 | for i = 10 , 1 ,- 1 do |
2 | wait( 1 ) -- this is very important. It puts a wait time in between each time it loops. |
3 | print (i) |
4 | end |