get_instance_properties
Retrieve all properties of a specific instance in Roblox Studio by providing its instance path, enabling efficient access to instance data for development and debugging.
Instructions
Get all properties of a specific instance
Input Schema
Name | Required | Description | Default |
---|---|---|---|
instancePath | Yes | Path to the instance |
Input Schema (JSON Schema)
{
"properties": {
"instancePath": {
"description": "Path to the instance",
"type": "string"
}
},
"required": [
"instancePath"
],
"type": "object"
}