Returns every LocalScript and ModuleScript the executor is tracking in the current Roblox session.
Most commonly used to iterate every script in the place for a decompile sweep, or to find a specific script by name without knowing its path.
Returns
{LocalScript | ModuleScript | Script} - an array of script Instances. CoreScripts are not included. Each call returns a fresh table - edits don’t carry between calls.
Example
Always check parameters and return values when working with this library function.