πŸŽ’How to require item?

If you want to require an item, then uncomment the item section under the target section.

Config.Target = {
    Type = 'ox', -- Choose from 'ox' or 'qb'
    Icon = "fas fa-hands-bubbles", -- Choose from https://fontawesome.com/icons
    IconColor = "#9bedff",
    --Item = "soap", -- Uncomment if you only want people to see target when they have item in inventory, also uncomment in client.lua
    Distance = 2.0,
}

Ox Inventory

If you want to require the item 'soap', then you can place this in your ox_inventory > data > items.lua.

["soap"] = {
    label = "Soap",
    weight = 100,
    description = "Keeps your hands clean from all the dirt!",
},	

Last updated