Skip to content

parallel

Concurrency

Parallel Luau block. Emits task.desynchronize / task.synchronize.

parallel {
ComputeComplexPhysics();
};

None.

None.

task.desynchronize() … task.synchronize()

Actors and thread safety are Roblox engine rules. Do not touch Instances unsafely inside the block. See Roblox Parallel Luau docs for what is legal.

parallel {
ComputeComplexPhysics();
};

Emits:

task.desynchronize()
ComputeComplexPhysics()
task.synchronize()

spawn · async