Skip to Content

QBCore Official Resources

The qbcore-fivem  organisation holds 71 repositories. The txAdmin recipe installs most of them, which is why a fresh QBCore server is playable immediately and also why it starts heavier than a hand-assembled one.

Core and infrastructure

ResourcePurpose
qb-coreThe framework itself — player data, jobs, shared tables, callbacks
qb-multicharacterCharacter selection and creation
qb-spawnSpawn point selection after character load
qb-loadingLoading screen
qb-smallresourcesA grab-bag of gameplay tweaks and native disables

qb-smallresources is worth reading before you keep it. It disables a long list of GTA behaviours and is a frequent source of “why can’t players do X” tickets.

Interaction and UI

ResourcePurpose
qb-inventorySlot-based inventory with metadata
qb-targetThird-eye targeting
qb-menuContext menus
qb-inputForm and text input dialogs
qb-radialmenuRadial interaction wheel
qb-hudStatus HUD
qb-scoreboardPlayer list and server info

Jobs

qb-policejob, qb-ambulancejob, qb-mechanicjob, qb-taxijob, qb-truckerjob, qb-busjob, qb-garbagejob, qb-newsjob, qb-hotdogjob, qb-recyclejob and qb-vineyard.

Police and ambulance are the two that every server modifies heavily. Fork them before you start editing, or your first framework update will overwrite the work.

Economy and property

ResourcePurpose
qb-bankingBank accounts, ATMs, society accounts
qb-managementBoss menus and society funds
qb-shopsRetail shops
qb-vehicleshopVehicle dealerships
qb-vehiclesalesPlayer-to-player vehicle sales
qb-garagesVehicle storage and retrieval
qb-houses / qb-apartmentsHousing
qb-cryptoIn-game cryptocurrency

Criminal activity

qb-bankrobbery, qb-storerobbery, qb-houserobbery, qb-truckrobbery, qb-jewelery, qb-drugs, qb-weed, qb-scrapyard, qb-pawnshop, qb-prison, safecracker and qb-doorlock.

Common community replacements

Most established servers swap some of the defaults. The usual substitutions:

DefaultFrequently replaced with
qb-inventoryox_inventory 
qb-targetox_target 
qb-doorlockox_doorlock 
qb-menu, qb-inputox_lib menus and dialogs
qb-phoneA paid phone such as lb-phone or qs-smartphone
⚠️

Swapping the inventory is not a drop-in change. Every resource that calls Player.Functions.AddItem or reads PlayerData.items has to be checked, and the item database has to be converted. Do it before launch, not after.

Building your own

Fork rather than edit in place, and keep your resources in a separate folder from the [qb] directory so framework updates never touch them.

Custom resource development →  · Creating a job →  · Item use effects → 

Next steps