# Items

If you are on QBCore framework and **NOT using ox\_inventory**, add this to your qb-core > shared > items.lua:

<pre class="language-lua"><code class="lang-lua"><strong>['camera'] = {['name'] = 'camera', ['label'] = 'Camera', ['weight'] = 80, ['type'] = 'item', ['image'] = 'camera.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Private security camera'},
</strong>['tablet'] = {['name'] = 'tablet', ['label'] = 'Tablet', ['weight'] = 50, ['type'] = 'item', ['image'] = 'tablet.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Tablet for security cameras'},
['hackdevice'] = {['name'] = 'hackdevice', ['label'] = 'Hack Device', ['weight'] = 20, ['type'] = 'item', ['image'] = 'hackdevice.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Device for hacking cameras'},
</code></pre>

### ox\_inventory

If you are using [**ox\_inventory**](https://github.com/overextended/ox_inventory/releases)**,** add this to your ox\_inventory > data > items.lua:

```lua
['camera'] = {
	label = 'Camera',
	weight = 80,
	stack = false
},
['tablet'] = {
	label = 'Tablet',
	weight = 50,
	stack = false
},
['hackdevice'] = {
	label = 'Hack Device',
	weight = 20,
	stack = false
}
```

### You can change item names in config.lua

## Items images:

![](https://2644204359-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fso4Bz1A5MlataovyRdlF%2Fuploads%2FiZRUs8dXcUjGucfty4TY%2Fcamera.png?alt=media\&token=a87424bb-c319-40e2-ae42-ab56f222ed9f)

![](https://2644204359-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fso4Bz1A5MlataovyRdlF%2Fuploads%2Fb9dt6n7RND6Il3eASYBm%2Ftablet.png?alt=media\&token=1630caf1-ac7f-417d-b0ec-7dd84f8f5e71)

![](https://2644204359-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2Fso4Bz1A5MlataovyRdlF%2Fuploads%2Fhmm1qiyrk5kXx44DFyRZ%2Fhackdevice.png?alt=media\&token=73a5213a-435c-4983-8f8b-69cd8354793b)
