The Foundation of z-lab

Meet z-core

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.

Framework Agnostic

Built-in support for ESX, QBCore, Ox, and Standalone. No more rewrite for every framework.

Universal Inventory

Adapters for Ox, Quasar, QB, ESX, and Codem. Consistent API for items and storage.

Secure by Design

Centralized security manager and permission handling to protect your server logic.

integration.lua
-- 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!")
end

Powerful Modules

Player Manager

Unified player classes for all frameworks.

Economy

Universal cash, bank, and black money handling.

Job System

Sync jobs and grades across different systems.

NUI Bridge

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."

Author: ZhoraFPSVersion: 1.0.0Open Access