Loops

Repeat forever

To make your script run forever.

Repeat while & until

While condition will run when it´s true, until will stop when it´s true

Count with I from X to Y by Z

Output
a
b
c

For each item in list

Good to make a loop for example. for every member check if someone has a role

Output will be the same as Count with I loop

Break out of loop

Basically stops the loop script

Last updated