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