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 that have a specific property set to a specific value. You can optionally filter by class name and scope the search to a specific path. This is useful for finding all instances with particular settings, like all anchored parts or all disabled scripts.HTTP Endpoint
Request Parameters
The property name to check. Examples:
"Anchored", "Transparency", "Disabled"The value to match against. Can be boolean, number, string, or other JSON-serializable types.
Root path to search within. Defaults to
game (entire place).Filter results to only this class name. Examples:
"Part", "Script"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:235-277:
- Uses
ValueSerializer.fromJSON()to convert the target value - Recursively scans all descendants
- Optional className filter for efficiency
- Uses
pcallto safely check properties - Performs exact value equality check