getactorthreads
Returns a list of threads that you can execute code inside of.
function getactorthreads(): table<number, thread>table<number, thread>An array of threads available for code execution.Usage
Iterate threads
for index, thread in getactorthreads() do
print(index, thread)
end