How would i skip waiting for a function to finish?

You don’t have to unless you start involving the coroutines in other matters such as using running and yield. Coroutines work in virtually the same mannerism as spawn/delay and should be used the latter two. Those aren’t ideal functions especially in a run time intensive environment where the guarantee of functions running is critical.

You can read up on various horror stories and the comparison between each in this thread (which was previously linked by someone else):

2 Likes

Thanks man! I just had this same issue and never even knew about coroutines. You really do learn something new every day!

3 Likes