Documentation Index
Fetch the complete documentation index at: https://mintlify.com/code-and-relax/robloxstudio-mcp/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Themass_get_property tool allows you to efficiently retrieve the same property value from multiple Roblox instances in a single operation. This is useful for inspecting states, gathering data, or validating properties across multiple objects.
Parameters
Array of instance paths to read from. Each path uses dot notation (e.g.,
game.Workspace.Part1)Name of the property to get from all instances (e.g.,
Position, Transparency, Anchored)Vector3 Limitation
Return Format
The tool returns an object mapping each instance path to its property value:Examples
Getting transparency from multiple parts
Checking if multiple parts are anchored
Getting names of multiple instances
Getting CanCollide status
Performance Benefits
Error Handling
If a path is invalid or the property doesn’t exist on an instance, that entry may returnnull or an error message in the response object.
Use Cases
- Validating property values across multiple objects
- Gathering data for calculations or analytics
- Checking states before performing batch operations
- Debugging property values across a level
- Collecting configuration data from multiple instances
Workaround for Vector3 Properties
If you need to get Vector3 properties from multiple instances:Related Tools
- get_instance_properties - Get all properties of a single instance (supports Vector3)
- mass_set_property - Set the same property on multiple instances
- set_property - Set a property on a single instance