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

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
Was this helpful?