NA icon
Nameless Admin
continuation by ltseverydayyou
Overview
Docs

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 (.na and 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.

Getting Started
Setup

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/Plugins for .na plugins
  • Nameless-Admin/PluginsIY for Infinite-Yield-style .iy plugins

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, noclip or view random and see what happens.
  • To run several commands at once, separate them with a single backslash. For example: fly 50\goto random\dex will make you fly, then teleport to a random player and finally open the Dex explorer.
  • Start typing a command and press TAB to 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
How Nameless Admin Works
Architecture

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 .na and .iy plugins and merges their commands into the registry.
  • Integrations & utilities – notifications, logging, webhooks, FFlags, save/load systems, and various helper tools.

Command execution pipeline

  1. Input
    • Player opens the command bar or uses chat prefix.
    • Types something like infinitejump.
  2. Parsing
    • The input string is tokenized into command + args.
    • Aliases are resolved, and fuzzy matching is sometimes used when the name is close.
  3. Lookup
    • The command registry is searched (core commands + plugin commands).
    • Permissions / safety checks run if needed.
  4. Execution
    • The registered function is invoked with parsed arguments and the local player.
    • Underlying helpers handle movement, camera, ESP, remote firing, etc.
  5. Feedback
    • Notifications, console logs, and UI indicators show the result or errors.
Selecting players
Targets

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 as team.
  • enemies – same as nonteam.
  • 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.

Commands Reference
Core

The command list below is loaded directly from commands.json. You can also type cmds or cmdlist in game to browse.

Patched Commands
Patched

Patched commands override existing commands or provide temporary fixes. The list below is loaded dynamically from commands.json.