๐Ÿ‘œAdd Item

Add this item to your inventory Script

QB Based Inventory

If you are using qb based inventory then Navigate to qb-core/shared/items.lua and add this:

["wrench"] = {
        ["name"] = "wrench",
        ["label"] = "Wrench",
        ["weight"] = 100,
        ["type"] = "item",
        ["image"] = "wrench.png",
        ["unique"] = true,
        ["useable"] = false,
        ["shouldClose"] = false,
        ["combinable"] = nil,
        ["description"] = "A wrench to open something?"
    }

OX Inventory

If you are using ox inventory then Navigate to ox_inventory/data/items.lua and add this:

['wrench'] = {
    label = 'Wrench',
    weight = 100,
},

Last updated