Due to the limitation of Humanoid:MoveTo() yielding after 7 seconds for the past week ive been using a
Humanoid.MoveToFinished connection to loop my MoveTo()s to ensure the rig actually reaches the destination.
However ive found this can be quite hard to manipulate and play with if I wish the rigs to be maybe 1-2 studs away from the target.
So instead i’m considering replacing with a. repeat loop checking the magnitude to the target every second, however of course now id need to use coroutines else I could only run one rig per script at one time.
So I would like to ask, how efficient are coroutines, my use case would involve using around 100 of them, but id rather be able to run 200 as a stress test.