For loops- Stepping and reversing the loop [ANSWERED]

Hello,
How do you reverse a for loop and make it go from greatest to least? Also, in many other languages, you could say for ... step ... do. Can you do that in lua?
Thanks!

For i = 10,1,-1 for example

Oh… Thanks.