When you add in a “spawn(function()” code, it basically spawns in the functions but is there a way removing or discontinuing them? it’s not a loop so “break” wouldn’t work either way.
If there’s no other possible way then I believe I will have to use in-script boolean variables, but that could also wreck over the script since it spawns in a function, maybe I’m overthinking I’ll just see what happens if I find no solution for this problem.
just use coroutines instead of spawn, they are the better choice for the reason that when using spawn you’ll need to wait for an open slot in the scheduler due to the built-in wait()