Pug Development
  • ๐Ÿ‘‹Welcome To Pug Development
    • ๐Ÿ“ŒInformation
  • ๐Ÿ““Scripts
    • ๐Ÿ’ŽRobbery Creator
      • ๐Ÿ“Installation
        • Inventory Items
          • QB items
          • Ox Items
        • Mini Games
      • ๐Ÿ’กThings to know
        • ๐ŸŽจHow To Use
        • ๐ŸŽฎCustom Mini Games
        • ๐Ÿ’ฃCreate Explosion
        • ๐Ÿ“‘Tab Settings
        • ๐Ÿ“ฃBank Truck & ATM Alert
        • ๐Ÿ“ฑCustom Keypad
        • ๐Ÿ’ฑMove Steps Around
        • ๐Ÿ‘ปMake Props Disappear When Looted
        • ๐ŸคนRemove Kill Screen Effect
        • ๐ŸŽPreset Heist Progression
      • ๐Ÿ“œDependency & Support
    • ๐Ÿ’ผBusiness Creator
      • ๐Ÿ“Installation
      • ๐Ÿ’กThings to know
        • ๐Ÿ”—Linking Jobs To The Menu
        • ๐Ÿ“ƒOpen Menu
        • ๐Ÿ”›Criminal crafting
        • ๐Ÿ›ฐ๏ธCreated Items
      • โ“FAQ
      • ๐Ÿ“œDependency & Support
    • ๐Ÿ”ซPaint Ball
      • ๐Ÿ“Installation
        • ๐Ÿ‚ox_inventory
        • ๐ŸฆฅDispatch/Shots Fired
        • โŒqb-anticheat
      • ๐Ÿ“œDependency & Support
      • ๐Ÿ’กThings to know
        • ๐Ÿ—บ๏ธMap Making Tutorial
        • ๐Ÿ‘šSet Team Outfits
        • ๐Ÿ“…Scoreboard
        • ๐Ÿ”Surrender
    • ๐Ÿ› ๏ธRepo Job
      • ๐Ÿ“Installation
      • ๐Ÿ“œDependency & Support
    • ๐Ÿ’‰Coke Business
      • ๐Ÿ“Installation
      • ๐Ÿ“œDependency & Support
    • ๐ŸŽฃFishing
      • ๐Ÿ“Installation
        • Inventory Items
          • QB items
          • Ox Items
        • ๐ŸŸFishing Lure
      • ๐Ÿ“œDependency & Support
      • ๐Ÿ’กThings to know
        • โ†—๏ธProgression
        • ๐Ÿ’ฏReputation
    • ๐Ÿ”ซWeapon Sling
      • ๐Ÿ“Installation
      • ๐Ÿ“œDependency & Support
    • ๐Ÿ†Battle Royale
      • ๐Ÿ“Installation
        • Inventory Items
          • QB items
          • Ox Items
        • โ˜๏ธWeather Sync
        • ๐Ÿ‚ox_inventory
        • ๐ŸฆฅDispatch/Shots Fired
        • โŒqb-anticheat
      • ๐Ÿ“œDependency & Support
    • ๐Ÿš˜Car Chopping
      • ๐Ÿ“Installation
        • Inventory Items
          • QB items
          • Ox Items
      • ๐Ÿ“œDependency & Support
Powered by GitBook
On this page
  1. Scripts
  2. Robbery Creator
  3. Installation
  4. Inventory Items

Ox Items

Follow The File Path to Setup Items.

ox_inventory/data/items.lua

Copy All items and Paste Directly Into file.

-- Pug Robbery Creator
["gasmask"] = {
	label = "Gas Mask",
	weight = 100,
	stack = true,
	close = true,
	description = "Useful to avoid dying in gas",
	client = {
		image = "gas_mask.png",
	}
},
["ropehook"] = {
	label = "Rope Hook",
	weight = 100,
	stack = true,
	close = true,
	description = "A long rope with a hook on it.",
	client = {
		image = "rope-hook.png",
	}
},
["paintingart"] = {
    label = "Art Painting",
    weight = 500,
    stack = true,
    close = true,
    description = "A stunning piece of modern art.",
    client = {
        image = "painting-art.png",
    }
},
["paintingcity"] = {
    label = "City Painting",
    weight = 500,
    stack = true,
    close = true,
    description = "A depiction of a bustling city square.",
    client = {
        image = "painting-city.png",
    }
},
["paintingclown"] = {
    label = "Clown Painting",
    weight = 500,
    stack = true,
    close = true,
    description = "A colorful and eerie clown portrait.",
    client = {
        image = "painting-clown.png",
    }
},
["paintingfamily"] = {
    label = "Family Painting",
    weight = 500,
    stack = true,
    close = true,
    description = "A nostalgic painting of a family gathering.",
    client = {
        image = "painting-family.png",
    }
},
["paintingguys"] = {
    label = "Guys Painting",
    weight = 500,
    stack = true,
    close = true,
    description = "A painting of two gentlemen in conversation.",
    client = {
        image = "painting-guys.png",
    }
},
["paintinglady"] = {
    label = "Lady Painting",
    weight = 500,
    stack = true,
    close = true,
    description = "An elegant portrait of a lady.",
    client = {
        image = "painting-lady.png",
    }
},
["paintingnative"] = {
    label = "Native Painting",
    weight = 500,
    stack = true,
    close = true,
    description = "A painting of a native figure holding a mask.",
    client = {
        image = "painting-native.png",
    }
},
["paintingpaddle"] = {
    label = "Paddle Painting",
    weight = 500,
    stack = true,
    close = true,
    description = "A playful painting featuring balloons and paddles.",
    client = {
        image = "painting-paddle.png",
    }
},
["paintingpig"] = {
    label = "Pig Painting",
    weight = 500,
    stack = true,
    close = true,
    description = "Looks like an expensive pig?",
    client = {
        image = "painting-pig.png",
    }
},
["paintingrocket"] = {
    label = "Rocket Painting",
    weight = 500,
    stack = true,
    close = true,
    description = "An abstract painting of a rocket.",
    client = {
        image = "painting-rocket.png",
    }
},
["diamondnecklace"] = {
	label = "Diamond Necklace",
	weight = 50,
	stack = true,
	close = true,
	description = "A beautiful diamond necklace",
	client = {
		image = "diamondnecklace.png",
	}
},
["diamondring"] = {
	label = "Diamond Ring",
	weight = 20,
	stack = true,
	close = true,
	description = "A shiny diamond ring",
	client = {
		image = "diamondring.png",
	}
},
["goldbarstack"] = {
	label = "Gold Bar Stack",
	weight = 200,
	stack = true,
	close = true,
	description = "A stack of gold bars",
	client = {
		image = "goldbarstack.png",
	}
},
["goldbracelet"] = {
	label = "Gold Bracelet",
	weight = 30,
	stack = true,
	close = true,
	description = "A heavy gold bracelet",
	client = {
		image = "goldbracelet.png",
	}
},
["goldwatch"] = {
	label = "Gold Watch",
	weight = 40,
	stack = true,
	close = true,
	description = "An expensive gold watch",
	client = {
		image = "goldwatch.png",
	}
},
["purpleusb"] = {
	label = "Purple USB",
	weight = 10,
	stack = true,
	close = true,
	description = "A mysterious purple USB drive",
	client = {
		image = "purpleusb.png",
	}
},
["salvagedlockpick"] = {
	label = "Salvaged Lockpick",
	weight = 5,
	stack = true,
	close = true,
	description = "A worn-out salvaged lockpick",
	client = {
		image = "salvagedlockpick.png",
	}
},
["silverring"] = {
	label = "Silver Ring",
	weight = 15,
	stack = true,
	close = true,
	description = "A delicate silver ring",
	client = {
		image = "silverring.png",
	}
},
["unmarkedsimcard"] = {
	label = "Unmarked SIM Card",
	weight = 5,
	stack = true,
	close = true,
	description = "An unmarked SIM card, could be useful for something",
	client = {
		image = "unmarkedsimcard.png",
	}
},
["bandsofnotes"] = { 
	label = "Bands of Notes", 
	weight = 10, 
	stack = true, 
	close = true, 
	description = "A bundle of high-value notes, could be valuable.", 
	client = { image = "bandsofnotes.png" } 
}, 
["bankcard"] = { 
	label = "Bank Card", 
	weight = 5, 
	stack = true, 
	close = true, 
	description = "A standard bank card for transactions.", 
	client = { image = "bankcard.png" } 
}, 
["group6card"] = { 
	label = "Group 6 Security Card", 
	weight = 5, 
	stack = true, 
	close = true, 
	description = "A Group 6 security card granting access to restricted areas.", 
	client = { image = "group6card.png" } 
}, 
["humaneco2"] = { 
	label = "Compound X2", 
	weight = 5, 
	stack = true, 
	close = true, 
	description = "A Compound X2, potentially useful for specific tasks.", 
	client = { image = "humaneco2.png" } 
}, 
["paletobankcard"] = { 
	label = "Paleto Bank Card", 
	weight = 5, 
	stack = true, 
	close = true, 
	description = "An ID card for Paleto Bank employees.", 
	client = { image = "paletobankcard.png" } 
}, 
["rubynecklace"] = { 
	label = "Ruby Necklace", 
	weight = 3, 
	stack = true, 
	close = true, 
	description = "A valuable ruby necklace.", 
	client = { image = "rubynecklace.png" } 
}, 
["stacksofcash"] = { 
	label = "Stacks of Cash", 
	weight = 15, 
	stack = true, 
	close = true, 
	description = "A large stack of cash.", 
	client = { image = "stacksofcash.png" } 
}, 
["thermite"] = { 
	label = "Thermite", 
	weight = 5, 
	stack = true, 
	close = true, 
	description = "An explosive thermite device, useful for breaking through strong barriers.", 
	client = { image = "thermite.png" } 
},
["handsaw"] = { 
	label = "Hand Saw", 
	weight = 3, 
	stack = true, 
	close = true, 
	description = "A basic hand saw, useful for cutting wood and other materials.", 
	client = { image = "handsaw.png" } 
},
["harddrive"] = { 
	label = "Hard Drive", 
	weight = 1, 
	stack = true, 
	close = false, 
	description = "An internal hard drive, useful for storing data.", 
	client = { image = "harddrive.png" } 
},
["silverbar"] = { 
	label = "Silver Bar", 
	weight = 5, 
	stack = true, 
	close = false, 
	description = "A bar of pure silver, valuable for trading and crafting.", 
	client = { image = "silverbar.png" } 
},
["wirecutters"] = { 
	label = "Wire Cutters", 
	weight = 2, 
	stack = true, 
	close = true, 
	description = "A tool for cutting wires, essential for various tasks.", 
	client = { image = "wirecutters.png" } 
},
["pincracker"] = { 
	label = "Pin Cracker", 
	weight = 1, 
	stack = true, 
	close = true, 
	description = "A tool used for cracking pin-based locks, essential for skilled lockpickers.", 
	client = { image = "pincracker.png" } 
},
["bigbankcard"] = { 
	label = "Big Bank Card", 
	weight = 5, 
	stack = true, 
	close = true, 
	description = "A bank card that provides access to bank services.", 
	client = { image = "bigbankcard.png" } 
},

["c4"] = { 
	label = "C4 Explosive", 
	weight = 10, 
	stack = true, 
	close = true, 
	description = "A powerful explosive device, useful for breaching strong barriers.", 
	client = { image = "c4.png" } 
},
["humaneusb"] = { 
	label = "Humane Labs USB", 
	weight = 1, 
	stack = true, 
	close = true, 
	description = "A USB stick containing sensitive data, property of Humane Labs.", 
	client = { image = "humaneusb.png" } 
},
["bankidcard"] = { 
	label = "Bank ID Card", 
	weight = 1, 
	stack = true, 
	close = true, 
	description = "An ID card for bank employees, granting access to certain areas.", 
	client = { image = "bankidcard.png" } 
},
PreviousQB itemsNextMini Games

Last updated 4 months ago

๐Ÿ““
๐Ÿ’Ž
๐Ÿ“