roblox_get
Query Roblox Studio scenes to retrieve hierarchy trees, instance details, properties, search results, selection data, output logs, and texture information for development and debugging.
Instructions
Read-only queries against the Roblox Studio scene. Use the "action" parameter to select what to retrieve.
Actions:
"ping": Check plugin connection status and get place info.
"tree": Get ASCII hierarchy tree. Params: root (path, default game), maxDepth (number).
"search": Find instances by name/class. Params: query (substring), className, root, maxResults.
"instance": Get detailed info about one instance. Params: path (required), depth (children levels, default 1).
"properties": Get all readable properties. Params: path (required), properties (array of extra names).
"descendants_summary": Class-count breakdown under a root. Params: root (default Workspace).
"selection": Get the currently selected instances. Params: depth.
"output_log": Read recent Output log entries. Params: maxEntries (default 50).
"texture_info": Get texture and decal asset IDs for an instance and its descendants. Returns MeshPart TextureIDs, Decal/Texture asset IDs, and materials. Useful for understanding visual appearance without rendering textures in screenshots. Params: path (required), maxDepth (default 2).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| action | Yes | Which query to perform | |
| path | No | Instance path (dot-separated) | |
| root | No | Root path to scope the query | |
| query | No | Search substring (for search action) | |
| className | No | Filter by class name (for search) | |
| maxDepth | No | Tree depth limit | |
| maxResults | No | Result limit for search | |
| maxEntries | No | Log entry limit for output_log | |
| depth | No | Children depth for instance/selection | |
| properties | No | Extra property names to read (for properties action) |