search_objects
Locate Roblox Studio instances by name, class, or specific properties to streamline project organization and asset management.
Instructions
Find instances by name, class, or properties
Input Schema
Name | Required | Description | Default |
---|---|---|---|
propertyName | No | Property name when searchType is "property" | |
query | Yes | Search query | |
searchType | No | Type of search to perform | name |
Input Schema (JSON Schema)
{
"properties": {
"propertyName": {
"description": "Property name when searchType is \"property\"",
"type": "string"
},
"query": {
"description": "Search query",
"type": "string"
},
"searchType": {
"default": "name",
"description": "Type of search to perform",
"enum": [
"name",
"class",
"property"
],
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}