Environment Library
Executor, game, and registry environments, plus garbage collector contents.
getgenvReturns the global environment table, which is shared across all Ionize-made threads. This table is commonly used to share or store information between different Ionize-executed scripts.getrenvReturns the roblox's global environment table, which is inherited by all threads.getregReturns the global registry table. The registry is used to store references. Any object referenced in the registry will never be collected by the garbage collector, as the registry itself will never be collected. Thus a strong reference will always be held.getgcReturns a table of objects from the garbage collection list. If specified, tables will be included.filtergcReturns a table of objects filtered from the garbage collection list. If specified, a single object can also be filtered and returned instead.getsenvReturns the global environment table of a Script, LocalScript, or ModuleScript.gettenvReturns a thread's environment table.FunctionFilterOptionsFilter options passed to filtergc when searching for functions. Refines which Luau function types are returned.TableFilterOptionsFilter options passed to filtergc when searching for tables. Refines which Luau table types are returned.