I’m making a while task.wait(1) do loop and use coroutines inside it. the loops never stop until the round finish (around 45 mins or more) and I’m a bit worried about performance as I will wrap around 3-4 coroutines per loop. Are coroutines performance friendly or should I look at other ways?
So every second, a new coroutine is created, and they all take 45 minutes to stop? If so, that’s about 2700 different threads running at once. If you’re making 3-4, it would be 10k+ threads running at once. Is this true?