How do use use spawn()?

Spawn is used to run a function in a separate thread without yielding the current one. It will run simultaneously with the rest of the tasks, but won’t delay/affect the main thread.

spawn(function()
    --Do whatever here
end)
17 Likes