Install in 5 minutes
Every PrismScripts resource installs the same way. Once you've purchased through Tebex:
- Download the resource ZIP from your Tebex purchase page.
- Unzip and drop the folder into your server's
resources/directory. - Open
config.lua. Set permissions and (optional) Discord webhook URL. - Add
ensure resource_nameto yourserver.cfg. - 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.