Game Guides6 min readUpdated 2026-04-12
FiveM Server Setup
On this page
Overview
FiveM is a multiplayer modification framework for GTA V. This guide covers license keys, txAdmin, server configuration, and adding resources to your NovaStack FiveM server.
1. Get a Cfx.re License Key
- Register at keymaster.fivem.net with your Cfx.re account.
- Click New Server.
- Enter your server's IP address and a label.
- Copy the generated license key.
- Paste it into your NovaStack startup configuration under License Key.
2. txAdmin Setup
NovaStack FiveM servers come with txAdmin pre-installed — a powerful web-based management panel.
- Start your server. The txAdmin URL and pin will appear in the console output.
- Open the txAdmin URL in your browser.
- Enter the pin to authenticate.
- Follow the setup wizard: choose a template (ESX, QBCore, or blank) and configure your server name.
txAdmin gives you player management, live console, resource monitoring, scheduled restarts, and more.
3. Server Configuration
The main config file is server.cfg. Key directives:
# Server Info
sv_hostname "My FiveM Server | NovaStack"
sv_maxclients 64
sv_licenseKey "your-license-key-here"
sets sv_projectName "My FiveM Server"
sets sv_projectDesc "A custom FiveM server"
# Security
sv_scriptHookAllowed 0
set sv_enforceGameBuild 3258
# RCON
rcon_password "YourSecurePassword"
# Resources
ensure mapmanager
ensure spawnmanager
ensure sessionmanager
ensure chat
ensure hardcap4. Adding Resources
FiveM resources are scripts that add features — vehicles, jobs, UI elements, etc.
- Download a resource from the FiveM forums or GitHub.
- Upload the folder to
/resources/[custom]/. - Add
ensure resource-nameto yourserver.cfg. - Restart the server.
For framework-based servers (ESX/QBCore), resources are usually installed via the framework's dependency system.
Was this article helpful?