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
Searches for instances with flexible filtering options. You can search by name pattern, filter by class name, or combine both. This is more powerful thansearch_files as it supports class filtering.
The search is case-insensitive for name matching and exact for class names.
HTTP Endpoint
Request Parameters
Name search query (case-insensitive substring match). Can be empty to search by class only.
Filter results to only this class name (exact match). Examples:
"Part", "ModuleScript", "Folder"Root path to search within. Defaults to
game (entire place).Maximum number of results to return
Response Format
Array of matching instances
Number of results returned
True if more results exist beyond the limit
Error message if path resolution failed
Example
Implementation Details
FromInstanceTools.lua:132-168:
- Supports optional name query (substring match)
- Supports optional className filter (exact match)
- Both filters can be combined or used independently
- Recursively scans all descendants
- Stops when limit is reached