# Items

## 🎥 Bodycam Items

Add the following items to your inventory system to enable the **Police Bodycam** and **Bodycam Dashboard** features.

***

### 📦 ox\_inventory

`ox_inventory/data/items.lua`

```lua
['body_cam'] = {
		label = 'Polis Bodycam',
		weight = 1000,
		client = { 
			image = 'bodycam.png' ,
			export = 'frkn-bodycam.bodyCam'
		},
	}, 
```

***

### 📦 qb-core

`qb-core/shared/items.lua`

```lua
body_cam = {
    name = 'body_cam',
    label = 'Bodycam for Police',
    weight = 1000,
    type = 'item',
    image = 'bodycam.png',
    unique = true,
    useable = true,
    shouldClose = true,
    description = 'A body camera used by police officers for recording.',
    client = { 
			image = 'bodycam.png' ,
			export = 'frkn-bodycam.bodyCam'
		},
},
```
