To make your script run forever.
Example of using repeat forever
While condition will run when it´s true, until will stop when it´s true
Example of using While and Until loop (these are the same)
Example of using count with I loop
{% code title="Output" %}
a
b
c
{% endcode %}
Good to make a loop for example. for every member check if someone has a role
Example of using for each item loop
Output will be the same as Count with I loop
Basically stops the loop script
Example of using break out of loop