Skip to main content
  • Instant digital delivery
  • Lifetime updates on selected products
  • Trusted by server owners
FiveMX
Shop
Categories
New releasesBundlesAbout
All Products
ShopCategoriesNew releasesBundles
FiveMX

Start building your server today.

Curated FiveM resources, instant delivery, free starter mods, and practical guides in one calm marketplace.

Browse the shopsupport@fivemx.com

Shop

  • Shop
  • FiveM Mods
  • All Products
  • Free Mods
  • Best Scripts & Mods
  • FiveM Scripts

Frameworks

  • QBCore Scripts
  • ESX Scripts
  • QBox
  • Standalone

Community

  • Blog
  • Support
  • Creators
  • Affiliate

Legal

  • Privacy Policy
  • Terms of Service
  • Refund Policy
  • Digital Delivery
  • Cookie Policy
  • GDPR Compliance
  • DMCA
  • Imprint
  • Editorial Policy

Server Templates

  • QBCore Server Template
  • ESX Server Template
  • NoPixel Server Template
  • Server Packs
  • Free Server Templates
  • Tebex Alternative
© 2026 FiveMX. All rights reserved.·FiveMX is not affiliated with Rockstar Games, Take-Two Interactive, or CFX.re. All trademarks are property of their respective owners.
GitHubDiscordDocs
Table of Contents
TL;DR (Quick Start)PrerequisitesUnderstanding ACE & Identifiers (Works with Any Framework)PermissionsFramework‑Specific SetupQBCore: Grant Admin via ACE (Recommended)ESX: Set Group via Command or DatabasevRP (1.x/“Dunko” style) : Add Yourself to a GroupOperational Responsibilities (What “Good Admin” Looks Like)Security & Compliance ChecklistTroubleshootingFAQsRecommended Tools & Next StepsOutbound Resources (further reading)Copy‑Paste SnippetsPermissions ##Change Log (what’s improved vs. typical guides)Related FiveM resources

FiveM Admin Guide (2025): Safe, Correct, and Fast Setup

Published on February 5, 2024·by (Founder & Lead Editor)··6 min read·Updated on May 18, 2026

Ever dreamed of steering your own FiveM server? Get owner approval, tweak a few config lines or database entries, and you’ll be an admin in no time—ready to enforce rules, help players, and keep the c

Share
FiveM Admin Guide (2025): Safe, Correct, and Fast Setup

Turn framework research into a launch-ready script stack

Use this guide to narrow the framework decision, then move into the core commercial hubs for verified scripts, curated bundles, and a faster server launch path.

Complete server path

If the article is part of a launch plan, start with full server packs that reduce setup time and connect multiple systems faster.

Open full server packs

Launch faster

Bundles shorten the path from planning to launch by grouping the highest-leverage scripts into a cleaner commercial starting point.

View bundles

Premium catalog

Move from research into the main shop to compare real products, framework labels, screenshots, and production-ready quality signals.

Open premium shop

Disclosure: Some links below are affiliate links to FiveMX products. We may earn a commission at no extra cost to you.

Premium Scripts You Might Like

Free Scripts You Might Like

Related Articles

Running a FiveM server is not a simple task. You're managing game logic, player connections, database integrity, voice systems, and community dynamics all at once.

February 22, 2026

Letting players run multiple characters on a single FiveM account is one of the most impactful features you can add to a roleplay server.

April 5, 2026

Running a FiveM server inside Docker gives you environment consistency, simplified backups, reproducible deployments, and the ability to run multiple isolated server instances on…

April 1, 2026
FiveM Admin Guide (2025): Safe, Correct, and Fast Setup

TL;DR (Quick Start)

  • Get permission first. Only the server owner may grant admin.
  • Use correct identifiers. Prefer Rockstar license (identifier.license:...). SteamID64 is legacy.
  • Bootstrap via ACE (server.cfg) or framework tools, then refine in‑game.
  • QBCore: Add qbcore.god/qbcore.admin via server.cfg (ACE).
  • ESX: Use /setgroup admin (highest by default) or set users.group = 'admin' in DB.
  • vRP: Give yourself the admin/superadmin group via in‑game admin menu or the vrp_user_groups table (vRP 1.x).
  • Restart and verify. Test an admin‑only command, check logs.

Need tools? See Admin Tools & More for recommended admin menus and utilities (e.g., vMenu, logging, moderation helpers).


Prerequisites

  • Owner approval (non‑negotiable). Unauthorized elevation → ban/remove.
  • Access to server.cfg (or txAdmin CFG editor) and the database.
  • Your identifiers: ideally the Rockstar license; optionally fivem, discord, or steam. Easiest: txAdmin → Players → select yourself → copy identifiers.
  • Tools: a plain‑text editor (VS Code/Notepad++) and DB client (phpMyAdmin/MySQL Workbench).

Understanding ACE & Identifiers (Works with Any Framework)

ACE (Access Control Entries) is FiveM’s built‑in permission system. You grant permissions to principals (players or groups). Typical identifiers:

  • identifier.license:xxxxxxxx (Rockstar license) ← recommended
  • identifier.fivem:xxxxx (FiveM)
  • identifier.discord:xxxxxxxxxxxxxxx (Discord)
  • identifier.steam:1100001xxxxxxxx (Steam/HEX) ← legacy

Minimal safe pattern in server.cfg:

## Permissions
add_ace group.admin command allow                 # allow all commands for admin group
add_ace resource.qb-core command allow            # allow framework to run commands (QBCore example)

# Inheritance (QBCore example)
add_ace qbcore.god command allow
add_principal qbcore.god group.admin               # gods inherit admin
add_principal qbcore.god qbcore.admin
add_principal qbcore.admin qbcore.mod

# Players (replace with your license)
add_principal identifier.license:YOUR_LICENSE qbcore.god   # you

After saving, restart the server. You should now access your admin menu/commands. Once bootstrapped, use in‑game tools to manage staff.


Framework‑Specific Setup

QBCore: Grant Admin via ACE (Recommended)

  1. Open server.cfg (or txAdmin → CFG Editor).
  2. Ensure the permissions block exists (see above).
  3. Add your principal: add_principal identifier.license:YOUR_LICENSE qbcore.god # or qbcore.admin
  4. Restart the server.
  5. Verify in‑game: /admin → Player Management → Permissions.
  6. (Optional) Use the command: /addpermission god

Notes

  • Prefer license: over steam:; it’s more consistent in 2025.
  • Keep day‑to‑day role at admin; reserve god for founders/tech.
  • If permissions don’t “stick”, you likely edited the wrong CFG or placed entries above an auto‑generated txAdmin block. Put your lines at the end of server.cfg.

ESX: Set Group via Command or Database

Highest default group in modern ESX is admin.

Method A — In‑game (recommended):

  1. Find your ServerID (e.g., via scoreboard or /id).
  2. Run command in console or as an admin with RCON: /setgroup admin
  3. Re‑log once to refresh.

Method B — Database:

  1. Open your database → table users.
  2. Find your row by identifier.
  3. Set column group to admin.
  4. Restart your server.

Common pitfalls

  • Using superadmin on recent ESX builds: not valid; use admin.
  • Wrong identifier (Steam vs license). Use the same identifier ESX stores.

vRP (1.x/“Dunko” style) : Add Yourself to a Group

vRP uses its own groups (defined in vrp/cfg/groups.lua), stored per user.

Method A — In‑game menu:

  1. Open vRP admin menu.
  2. Choose Admin → @Add_Group.
  3. Enter your vRP user_id (not your temporary server ID).
  4. Enter group name, e.g., admin (or superadmin if your config defines it).
  5. Confirm, then re‑log.

Method B — Database (vRP 1.x):

  1. In the DB, open vrp_user_groups.
  2. Insert: user_id = YOUR_VRP_ID, group = 'admin' (or 'superadmin' if your server uses it).
  3. Restart the server.

Group names are server‑specific. Check vrp/cfg/groups.lua for the exact roles and permissions in your pack.


Operational Responsibilities (What “Good Admin” Looks Like)

  • Rule enforcement: Apply rules consistently. Document warnings/kicks/bans.
  • Player support: Resolve reports quickly; educate, don’t escalate.
  • Uptime & performance: Watch console, resource times, and logs; report anomalies.
  • Auditability: Log all admin actions (Discord webhooks/txAdmin). Use unique staff accounts.
  • Least privilege: Use admin day‑to‑day; reserve god/superadmin for break‑glass scenarios.

See for vetted admin menus, logging, and moderation resources.


Security & Compliance Checklist

  • Written owner approval for each admin.
  • Use license: identifiers; avoid Steam‑only setups.
  • Keep cfg permissions in version control.
  • Enable Discord/txAdmin logging for staff actions.
  • No shared staff accounts.
  • Rotate RCON/txAdmin passwords.
  • Test staff access on a staging slot before live.

Troubleshooting

SymptomLikely CausePrecise Fix
No admin after restartEdited wrong CFG or lines overridden by txAdminPut add_principal at end of server.cfg. Restart twice.
Admin menu opens but no powersWrong group (mod vs admin/god) or wrong identifier typeUse license: and match your framework’s group names.
ESX group change ignoredUsing deprecated superadminSet admin via /setgroup or DB; re‑log.
QBCore perms reset on rebootUsed only /addpermission without ACEAdd persistent add_principal lines to server.cfg.
vRP group not appliedInserted wrong user_id (used temp ID)Use vRP user_id from DB, not server temp ID.

FAQs

Do I still need SteamID64?
No. Use your Rockstar license for modern setups. Steam may still work if your server tracks it, but it’s legacy.

What’s the difference between admin and god on QBCore?
god is the highest and often inherits all others. Use sparingly.

Can I grant admin without a restart?
Yes if you use in‑game commands/menus. For ACE changes, restart is safest.

Is /setgroup safe to use in ESX?
Yes for modern ESX, but ensure the target group exists (admin). Persisting via DB ensures it survives edge cases.


Recommended Tools & Next Steps

  • Install a modern admin menu with Discord logging, spectate, teleport, and moderation tools.
  • Enable txAdmin player monitoring & bans sync.
  • Set up Discord webhooks for admin actions (joins, bans, kicks).
  • Maintain a staff handbook: escalation ladder, ban durations, appeal process.

Explore our curated list: – includes vMenu and other vetted resources.


Outbound Resources (further reading)

  • QBCore permissions guide (ACE, groups, examples).
  • ESX command reference for /setgroup and admin workflows.
  • ACE permissions primer (principals & inheritance) for safer configs.

Copy‑Paste Snippets

QBCore – Minimal, safe permissions block

## Permissions ##
add_ace group.admin command allow
add_ace resource.qb-core command allow

# Inheritance
add_ace qbcore.god command allow
add_principal qbcore.god group.admin
add_principal qbcore.god qbcore.admin
add_principal qbcore.admin qbcore.mod

# Players
add_principal identifier.license:REPLACE_ME qbcore.god  # Your main account

ESX – Set admin via DB

UPDATE `users`
SET `group` = 'admin'
WHERE `identifier` = 'license:REPLACE_ME';

vRP – Insert admin group (vRP 1.x)

INSERT INTO `vrp_user_groups` (`user_id`, `group`) VALUES (YOUR_VRP_ID, 'admin');


Change Log (what’s improved vs. typical guides)

  • Replaced legacy Steam‑only approach with license: best practice.
  • Corrected QBCore section to use ACE + persistent server.cfg entries.
  • Clarified ESX highest role (admin) and provided safe DB & command paths.
  • Added vRP in‑game/DB dual methods and group config pointer.
  • Included security checklist, FAQ, and ready‑to‑paste snippets.

If you need implementation help, paste your server.cfg permissions block and I’ll spot‑fix it.

Related FiveM resources

Use these internal resources to connect FiveM Admin Guide (2025): Safe, Correct, and Fast Setup with setup, framework, marketplace resources, and server operations.

Previous Article

How to Create a Tebex Store for FiveM

Next Article

How to Fix "Server Thread Hitch Warning" in FiveM

Table of Contents

TL;DR (Quick Start)PrerequisitesUnderstanding ACE & Identifiers (Works with Any Framework)PermissionsFramework‑Specific SetupQBCore: Grant Admin via ACE (Recommended)ESX: Set Group via Command or DatabasevRP (1.x/“Dunko” style) : Add Yourself to a GroupOperational Responsibilities (What “Good Admin” Looks Like)Security & Compliance ChecklistTroubleshootingFAQsRecommended Tools & Next StepsOutbound Resources (further reading)Copy‑Paste SnippetsPermissions ##Change Log (what’s improved vs. typical guides)Related FiveM resources

More on This Topic

How to Set Up txAdmin from Scratch (2026 Guide)How to Connect txAdmin to Discord (2026 Guide)QBCore Admin Commands — Complete FiveM ReferenceESX Admin Commands — Complete 2026 ReferenceHow to Create a Logo for Your Gaming Server or Community (2026 Guide)

Framework hub

Browse QBCore-ready scripts

Move into the QBCore landing page to compare verified scripts, framework fit, and install-ready products built for modern FiveM servers.

Open QBCore hub
Home
Blog
Tutorials & Guides
Lars Miller
Credentials
Tutorials & Guides
Compare full server packs
Compare curated bundles
Browse premium FiveM scripts
Izzy – Admin Menu

Izzy – Admin Menu

$18.99
rcore Advanced Reports

rcore Advanced Reports

$12.49
Admin/Staff vests

Admin/Staff vests

$5.49
Anti CombatLog

Anti CombatLog

$5.49
Highway Police Patrol MLO

Highway Police Patrol MLO

384 downloads
The Most Advanced Appearance

The Most Advanced Appearance

314 downloads
Bunker shadow complex ( MAP + SCRIPT )

Bunker shadow complex ( MAP + SCRIPT )

284 downloads
Italian Pizzeria - Vespucci Pizza [FiveM MLO]

Italian Pizzeria - Vespucci Pizza [FiveM MLO]

265 downloads
FiveM Server Management: The Complete Guide from Setup to Scale
FiveM Server Management: The Complete Guide from Setup to Scale
FiveM Multicharacter Setup Guide 2026 — Multiple Characters on One Account
FiveM Multicharacter Setup Guide 2026 — Multiple Characters on One Account
How to Run a FiveM Server Using Docker: Complete Setup Guide
How to Run a FiveM Server Using Docker: Complete Setup Guide
Admin Tools & More
Admin Tools & More
FiveM server setup
server.cfg
txAdmin Discord setup
Discord whitelist
server backups
rules generator

No time to configure everything yourself?

Start with a pre-built, tested FiveM server pack. Framework-optimized, all scripts pre-installed.

Super ESX Server
esxstandalone

Super ESX Server

The Super ESX Server is one of the best FiveM server templates - over 1.000 purchases! Want to know why we call it our Super Server? Check out our video to find out some of the basics details of the world. Update 10 is included, make sure to install v7 first and then use content of v10 yo

$400.00
ESX Server Base (by RibSosay)
esxstandalone

ESX Server Base (by RibSosay)

Prebuilt FiveM server with ESX framework GUARANTEE : We offer a guarantee ensuring compatibility with your setup.

$150.00
View all server packs