ForLoop only plays once

The ForLoop should wait until it’s body has completed and then do another.

Right now, it tries to do the loop body 20 times all in the same milisecond! ( I even tried adding a delay in the loop body - no effect)

thanks, I wanted to let the staff know to fix it.

Delay will separate the thread so it won’t change anything. If ForLoop is truly multithreaded then it’s definitely intended and it’s actually a good thing preference wise, you just need to put that in to account. Alternatively you can create custom macro that do that in single thread.

HERE is how to make custom For Loop that works with delay / other condition before it does next iteration.