Documentation

Install, configure, and ship.

Guides for installing, configuring and integrating PrismScripts resources into your FiveM server.

Install in 5 minutes

Every PrismScripts resource installs the same way. Once you've purchased through Tebex:

  1. Download the resource ZIP from your Tebex purchase page.
  2. Unzip and drop the folder into your server's resources/ directory.
  3. Open config.lua. Set permissions and (optional) Discord webhook URL.
  4. Add ensure resource_name to your server.cfg.
  5. Restart your FiveM server. Done.

Supported frameworks

Every script auto-detects the framework on startup:

  • QBCore — most popular today, full support out of the box
  • Qbox — modern fork of QBCore, fully compatible
  • ESX — classic, still active, every script supports it
  • Standalone — for custom frameworks, covers 95% of use cases

Permission tiers

All admin-style resources use a 3-layer permission system, in this order of precedence:

Config.Permissions = {
  identifiers = { ['license:abc...'] = 'admin' },  -- explicit map
  ace         = 'santi_admin',                     -- ACE permission
  groups      = { 'god', 'admin', 'superadmin' },  -- framework groups
}

Each action also has its own minimum tier (mod / admin / superadmin):

Config.ActionTiers = {
  kick     = 'mod',
  ban      = 'admin',
  restart  = 'superadmin',
}

santi_admin

Detailed docs ship with v1.0

Estimated June 2026. The MVP is already on GitHub — read the README meanwhile.

More coming

As more scripts launch, dedicated docs appear here. For now, see the roadmap for what's next.