Nameless Admin is an easy-to-use admin script that works in all Roblox games. giving you new tools to play with:
- 999 core commands covering movement, visuals and utility.
- Mobile-friendly UI and controls.
- Plugin system (
.naand Infinite Yield-style.iy). - Settings, fast flags, themes and more.
This page documents how it loads, how commands are processed, and provides a structured list
of commands extracted directly from Source.lua. Patched commands are listed separately.
Loading Nameless Admin
Use the latest official loader from the GitHub repository:
-- Main (stable)
loadstring(game:HttpGet("https://raw.githubusercontent.com/ltseverydayyou/Nameless-Admin/main/Source.lua"))()
-- Testing build
loadstring(game:HttpGet("https://raw.githubusercontent.com/ltseverydayyou/Nameless-Admin/main/NA%20testing.lua"))()
Plugin folders
Create these folders in your executor’s Workspace:
Nameless-Admin/Pluginsfor.napluginsNameless-Admin/PluginsIYfor Infinite-Yield-style.iyplugins
After you put your plugin files into these folders and run the loader, Nameless Admin will find and load them automatically. You'll see which plugins it finds printed in the console.
Basic usage
- Press the prefix key (the default is
;) to open the command bar. - Type a command like
fly 3,nocliporview randomand see what happens. - To run several commands at once, separate them with a single backslash. For example:
fly 50\goto random\dexwill make you fly, then teleport to a random player and finally open the Dex explorer. - Start typing a command and press
TABto complete it, or tap one of the suggestions in the autofill list. - Use the UI tabs for:
- Commands browser / search
- Settings and FFlags
- ESP / visual tools
- Plugins and integrations
High-Level Architecture
At a high level, Nameless Admin is split into:
- Loader – the entrypoint (
Source.lua) that sets up services, shared state, and loads the rest of the modules. - Core systems – command registry, parser, scheduler/jobs, network helpers, mobile/PC detection, etc.
- UI layer – the main UI and windows (themes, settings, command list, ESP, tools, etc.).
- Plugin layer – loads
.naand.iyplugins and merges their commands into the registry. - Integrations & utilities – notifications, logging, webhooks, FFlags, save/load systems, and various helper tools.
Command execution pipeline
- Input
- Player opens the command bar or uses chat prefix.
- Types something like
infinitejump.
- Parsing
- The input string is tokenized into command + args.
- Aliases are resolved, and fuzzy matching is sometimes used when the name is close.
- Lookup
- The command registry is searched (core commands + plugin commands).
- Permissions / safety checks run if needed.
- Execution
- The registered function is invoked with parsed arguments and the local player.
- Underlying helpers handle movement, camera, ESP, remote firing, etc.
- Feedback
- Notifications, console logs, and UI indicators show the result or errors.
You don't have to type someone's full name. Use these shortcuts to pick players:
all– everyone in the server.others– everyone except you.me– just you.random– one random player.npc– non-player characters.seated– players who are sitting.stood– players who are standing.nearest– the closest player to you.farthest– the farthest player from you.dead– players with no health.alive– players who are alive.friends– your Roblox friends.nonfriends– everyone who isn’t your friend.team– players on your team.nonteam– players not on your team.r15– players using the R15 rig.r6– players using the R6 rig.invisible– players whose avatars are invisible.bacon– default “bacon hair” style characters.slenders– tall slender characters.short– shorter characters.#<number>– picks that many random players.%<team name>– players whose team starts with those letters.allies– same asteam.enemies– same asnonteam.age<days>– players with an account age equal or less than that many days.group<id>– players in a specific group.rad<studs>– players within a distance around you.cursor– the player under your mouse cursor.
These shortcuts make commands like goto and view simpler. For example,
goto random takes you to a random player and view allies lets you watch your
teammates.
