search_by_property
Locate objects in Roblox Studio by specifying a property name and value, enabling precise identification of elements within your project.
Instructions
Find objects with specific property values
Input Schema
Name | Required | Description | Default |
---|---|---|---|
propertyName | Yes | Name of the property to search | |
propertyValue | Yes | Value to search for |
Input Schema (JSON Schema)
{
"properties": {
"propertyName": {
"description": "Name of the property to search",
"type": "string"
},
"propertyValue": {
"description": "Value to search for",
"type": "string"
}
},
"required": [
"propertyName",
"propertyValue"
],
"type": "object"
}