Documentation Index
Fetch the complete documentation index at: https://mintlify.com/nnaridz/RbxGenie/llms.txt
Use this file to discover all available pages before exploring further.
Description
Returns a high-level overview of the project structure, showing the top-level hierarchy of the game. This is essentially a convenience wrapper aroundget_file_tree with sensible defaults for getting a project overview.
By default, it shows 2 levels of depth starting from the root game object.
HTTP Endpoint
Request Parameters
Maximum depth to traverse (capped at 3)
Response Format
Same as get_file_tree response format:Name of the root instance (typically “game”)
Class name of the root
Number of immediate children
Array of child instances (recursive structure)
True if result was truncated
Additional information about truncation
Example
Implementation Details
FromInstanceTools.lua:93-95:
- Simple wrapper that calls
get_file_treewith no path and specified depth - Defaults to depth of 2 for a balanced overview
- Inherits all behavior and limits from
get_file_tree