Config
A module for configuring various aspects of the sandbox.
Properties
AllowParallelLuau
This item is read only and cannot be modified. Read OnlyAdvancedCustomizationConfig.AllowParallelLuau: boolean
Whether the sandbox will allow Actors (Parallel Luau)
to be used in the sandbox. Default: false.
When this is false, any call to the sandboxer from an
Actor will error. Each Actor creates its own instance of
this module, so if this is problematic (and it likely will
be because of memory usage), set this to false.
When this is true, the sandboxer will work as expected in
Actors, but it may cause performance issues and increased
memory usage. task.synchronize() and task.desynchronize()
will work as usual, but errors regarding property sets while
in parallel mode might not make sense.
TrackInstances
This item is read only and cannot be modified. Read OnlyBasicCustomizationConfig.TrackInstances: booleanWhether the sandbox should track Instances. Default: false.
If this is enabled, the sandbox will keep track of all Instances
that are created in the sandbox. It will also track all Instances
that are accessed in the sandbox.
This will allow for forcible cleanup of Instances that are created
in the sandbox, but it may cause performance issues if there are a lot
of Instances being created.
TrackRBXScriptConnections
This item is read only and cannot be modified. Read OnlyBasicCustomizationConfig.TrackRBXScriptConnections: boolean
Whether the sandbox should track RBXScriptConnections.
Default: false.
If this is enabled, the sandbox will keep track of all
RBXScriptConnections that are created in the sandbox.
This will allow for forcible cleanup of RBXScriptConnections
that are created in the sandbox, but it may cause performance
issues if there are a lot of RBXScriptConnections being created.