API Reference

Actor

Running code inside parallel Luau actors and passing values between them.

Available Functions

FunctionDescription
getactorsReturns a table of actor (not including deleted ones). Some games delete their actors while they're running.
getactorthreadsReturns a table of every thread connected to every actor.
getdeletedactorsReturns a table of every deleted actor. Some games delete their actors while they're running.
is_parallelReturns a boolean indicating whether is_parallel was called in parallel.
run_on_actorExecutes a script on an actor.
run_on_threadExecutes a script on an actor thread.
create_comm_channelReturns an identifier and a BindableEvent. Used in one way communication between actors.
get_comm_channelReturns a BindableEvent. Used in one way communication between actors.