I currently have use it in many things
1 | for x = 10 , 0 , - 1 |
2 | print (x) |
3 | end |
My current plan is to make it as a countdown? But it just goes: 10,9,8,7..etc. Instead of 10..9...8, Can anybody help me?
You can add a delay like this:
1 | for x = 10 , 0 , - 1 do |
2 | print (x) |
3 | wait( 0.1 ) |
4 | end |
Where 0.1
is the length of the delay, in seconds.