Loot Table Generator

Items/ EconomyFreeGTA 6 ready

Create balanced loot tables and drop rates for your server's economy.

Inventory DesignersEconomy BuildersScript Authors
4.8/5 · 127 ratings·Used by GTA 6 creators worldwide·Browser-based, no install

What is Loot Table Generator?

Loot Table Generator turns a quick form into a copy-paste FiveM config that FiveM inventory designers can drop straight into a server or script folder. Compatible with QBCore, ESX, QBox and standalone resources. The tool is 100% free, runs entirely in your browser, and never asks you to sign up.

Built specifically for the world of GTA 6 - Vice City, Leonida, Jason and Lucia, Port Gellhorn, and the entire GTA VI universe. Searched by players as gta 6 loot table generator.

Loot Table Generator

Roll a server-ready loot table with GTA-grounded items. Free — unlimited rerolls.

FREE · Lua + JSON export

Deterministic rolls, 60+ themed items across weapons, cash, drugs, jewelry, tools, tech, ammo and keys. Drop-in for QBCore / ESX / ox_inventory.

Live preview12 entries
ItemCatChanceQtyValue
SIM Card
common
tech37.3%1-5$41-$130
Shotgun Shells
common
ammo37.3%1-4$94-$241
Advanced Lockpick
rare
tool21.3%1-2$978-$1,591
Rope
common
tool40.9%1-4$38-$98
Rolled Hundreds
common
cash33.4%1-6$303-$929
Sawed-Off Shotgun
uncommon
weapon18.2%1-1$2,386-$3,771
Pistol Ammo Box
common
ammo53%1-4$87-$199
Assault Rifle
rare
weapon10.9%1-1$7,629-$12,080
Heavy Sniper
epic
weapon5.2%1-1$19,184-$25,742
Raw Opium
rare
drug16.4%1-3$2,114-$4,142
Surveillance Camera
uncommon
tech18.8%1-2$409-$965
Repair Kit
uncommon
tool29.6%1-3$331-$656
Lua preview
-- Generated loot table (QBCore / ESX compatible)
-- Drop in as Config.LootTable and reference by item key.
Config = Config or {}
Config.LootTable = {
    {
        item     = "sim_card",
        label    = "SIM Card",
        category = "tech",
        rarity   = "common",
        weight   = 373,
        chance   = 37.3, -- %
        minQty   = 1,
        maxQty   = 5,
        value    = { min = 41, max = 130 },
    },
    {
        item     = "shotgun_shells",
        label    = "Shotgun Shells",
        category = "ammo",
        rarity   = "common",
        weight   = 373,
        chance   = 37.3, -- %
        minQty   = 1,
        maxQty   = 4,
        value    = { min = 94, max = 241 },
    },
    {
        item     = "advanced_lockpick",
        label    = "Advanced Lockpick",
        category = "tool",
        rarity   = "rare",
        weight   = 213,
        chance   = 21.3, -- %
        minQty   = 1,
        maxQty   = 2,
        value    = { min = 978, max = 1591 },
    },
    {
        item     = "rope",
        label    = "Rope",
        category = "tool",
        rarity   = "common",
        weight   = 409,
        chance   = 40.9, -- %
        minQty   = 1,
        maxQty   = 4,
        value    = { min = 38, max = 98 },
    },
    {
        item     = "rolled_hundreds",
        label    = "Rolled Hundreds",
        category = "cash",
        rarity   = "common",
        weight   = 334,
        chance   = 33.4, -- %
        minQty   = 1,
        maxQty   = 6,
        value    = { min = 303, max = 929 },
    },
    {
        item     = "sawed_off_shotgun",
        label    = "Sawed-Off Shotgun",
        category = "weapon",
        rarity   = "uncommon",
        weight   = 182,
        chance   = 18.2, -- %
        minQty   = 1,
        maxQty   = 1,
        value    = { min = 2386, max = 3771 },
    },
    {
        item     = "pistol_ammo_box",
        label    = "Pistol Ammo Box",
        category = "ammo",
        rarity   = "common",
        weight   = 530,
        chance   = 53, -- %
        minQty   = 1,
        maxQty   = 4,
        value    = { min = 87, max = 199 },
    },
    {
        item     = "assault_rifle",
        label    = "Assault Rifle",
        category = "weapon",
        rarity   = "rare",
        weight   = 109,
        chance   = 10.9, -- %
        minQty   = 1,
        maxQty   = 1,
        value    = { min = 7629, max = 12080 },
    },
    {
        item     = "heavy_sniper",
        label    = "Heavy Sniper",
        category = "weapon",
        rarity   = "epic",
        weight   = 52,
        chance   = 5.2, -- %
        minQty   = 1,
        maxQty   = 1,
        value    = { min = 19184, max = 25742 },
    },
    {
        item     = "raw_opium",
        label    = "Raw Opium",
        category = "drug",
        rarity   = "rare",
        weight   = 164,
        chance   = 16.4, -- %
        minQty   = 1,
        maxQty   = 3,
        value    = { min = 2114, max = 4142 },
    },
    {
        item     = "surveillance_camera",
        label    = "Surveillance Camera",
        category = "tech",
        rarity   = "uncommon",
        weight   = 188,
        chance   = 18.8, -- %
        minQty   = 1,
        maxQty   = 2,
        value    = { min = 409, max = 965 },
    },
    {
        item     = "repair_kit",
        label    = "Repair Kit",
        category = "tool",
        rarity   = "uncommon",
        weight   = 296,
        chance   = 29.6, -- %
        minQty   = 1,
        maxQty   = 3,
        value    = { min = 331, max = 656 },
    },
}

-- Example roll (server-side):
-- local roll = math.random(1, 100)
-- for _, entry in ipairs(Config.LootTable) do
--     if roll <= entry.chance then
--         local qty = math.random(entry.minQty, entry.maxQty)
--         exports.ox_inventory:AddItem(source, entry.item, qty)
--         break
--     end
-- end

Built for these scenarios

Why GTA 6 players use Loot Table Generator

Inventory Designers
Economy Builders
Script Authors

How to use Loot Table Generator for GTA 6

01

Add items

Define items with rarity and value.

02

Set probabilities

Configure drop chances with sliders.

03

Simulate

Run simulations to verify balance.

04

Export

Download as JSON or Lua table.

05

Pick framework

QBCore, ESX, QBox, or standalone - defaults match the most common stack.

Deep dive

Loot Table Generator: the complete GTA 6 guide

01

What Loot Table Generator generates

Loot Table Generator produces FiveM-ready GTA 6 / GTA RP code: server.cfg blocks, item definitions, job configs, loot tables, polyzones, vehicle shop entries - whichever resource type the tool covers. The output respects the conventions of QBCore, ESX, QBox, ox_inventory, and standalone resources, so you can drop it straight into your server folder. Under the hood the output is plain-text Lua, JSON, SQL, or CFG depending on what the tool generates. Everything is git-friendly and produces clean diffs when you regenerate later.

02

Filling in the form

The fields map 1:1 to the values in the output file. You do not need to know the syntax - the defaults produce a working config, and changing an input updates only that line in the generated code. The live preview lets you see exactly what each field does without running it on a live server. For framework choice, pick the one your server already uses. If you are mid-migration, generate twice and compare the diffs - the structural similarity makes it easy to see what differs between QBCore and ESX outputs.

03

Dropping the output in

Copy the generated code to your clipboard and paste it directly into your server config, your resource Lua file, or your JSON/SQL config. Restart the server or the resource and the config is live. If you are using a framework (ESX Legacy, QBCore, QBox, VORP), the output respects their standard conventions and should not conflict with other resources. For ox_inventory specifically, the item table format matches the latest ox_inventory schema and supports stack sizes, weights, and metadata blocks out of the box.

04

Iterating without re-generating

Small tweaks can be done directly in your editor. The tool is most useful for scaffolding the structure; once it is in your repo, your usual workflow takes over. For version control, commit the generated file with a clear message mentioning the tool ("Generated server.cfg via gtatools.net"). When you regenerate later with tweaked settings, your git diff shows exactly what changed - and reviewers immediately know it came from a tool, not a hand-edit.

FAQ

Loot Table Generator - frequently asked questions

Also searched as

gta 6 loot table generatorgta vi loot table generatorgta 6 online loot table generatorloot table generatorfree loot table generatorloot table generator onlineloot table generator no downloadfivem inventory toolsgta 6 ox_inventory itemsqbcore item generatorfivem loot tablesgta 6 fivem itemsfivem loot table generatorqbcore loot config

Ready to ship your next GTA 6 items project?

Loot Table Generator is one of many GTA 6 tools on GTATools.net - all free to start, all browser-based, all tuned for Vice City and Leonida.