getgc_find
Search the Lua garbage collector for functions and tables by constants, upvalues, or name patterns to locate hidden functions in Roblox environments.
Instructions
Search the Lua garbage collector for functions/tables by constants, upvalues, or name patterns. Useful for finding hidden functions.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| constants | No | Array of string constants to search for in functions | |
| upvalues | No | Array of upvalue names to search for | |
| name | No | Function name pattern to match | |
| type | No | Type to search for: 'function', 'table', or 'all' (default 'function') |