so lets say i did this:
task.desynchronise
task.spawn(function()
-- code here
end)
would the task.spawn send the code back to main thread or would it carry on being in the worker thread ?
so lets say i did this:
task.desynchronise
task.spawn(function()
-- code here
end)
would the task.spawn send the code back to main thread or would it carry on being in the worker thread ?
You’ll have to make sure the thread ends in some way.