# Items

{% hint style="info" %}
You can check the `ui/items` folder for images. If it is not you have to find the images yourself.
{% endhint %}

{% tabs %}
{% tab title="ox\_inventory" %}
{% code title="ox\_inventory/data/items.lua" fullWidth="false" %}

```lua
['heavy_rope'] = { label = 'Heavy Rope', weight = 1},
```

{% endcode %}
{% endtab %}

{% tab title="qb-inventory" %}
{% code title="qb-core/shared/items.lua" %}

```lua
heavy_rope = { name = 'heavy_rope', label = 'Heavy Rope', weight = 100, type = 'item', image = 'heavy_rope.png', unique = false, useable = true, shouldClose = true, description = 'Heavy Rope' },
```

{% endcode %}
{% endtab %}
{% endtabs %}
