mass_get_property
Retrieve a specific property from multiple instances simultaneously using a structured query, simplifying data extraction in Roblox Studio environments.
Instructions
Get the same property from multiple instances at once
Input Schema
Name | Required | Description | Default |
---|---|---|---|
paths | Yes | Array of instance paths to read from | |
propertyName | Yes | Name of the property to get |
Input Schema (JSON Schema)
{
"properties": {
"paths": {
"description": "Array of instance paths to read from",
"items": {
"type": "string"
},
"type": "array"
},
"propertyName": {
"description": "Name of the property to get",
"type": "string"
}
},
"required": [
"paths",
"propertyName"
],
"type": "object"
}