A universal framework bridge for FiveM. Build once, run everywhere. z-core handles the complexity of framework and inventory variations so you can focus on your script's logic.
Built-in support for ESX, QBCore, Ox, and Standalone. No more rewrite for every framework.
Adapters for Ox, Quasar, QB, ESX, and Codem. Consistent API for items and storage.
Centralized security manager and permission handling to protect your server logic.
-- Get the brain
local ZCore = exports['z-core']:GetCoreObject()
-- Use framework-agnostic methods
local player = ZCore.GetPlayer(source)
local money = player.GetMoney('cash')
if money >= 500 then
player.RemoveMoney('cash', 500)
player.AddItem('water', 1)
print("Purchase successful via z-core!")
endUnified player classes for all frameworks.
Universal cash, bank, and black money handling.
Sync jobs and grades across different systems.
Safe communication between Lua and NUI.
"z-core isn't just a library; it's the nervous system that keeps every z-lab script connected and secure."