> For the complete documentation index, see [llms.txt](https://mstudio-1.gitbook.io/mstudio/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mstudio-1.gitbook.io/mstudio/kz-resources/editor-2/items.md).

# Items

## Created with ox\_inventory

Adding the items in `ox_inventory/data/items.lua`:

```lua
	['police_tape'] = {
		label = 'Police Tape',
		weight = 100,
		stack = true,
	},

	['police_tape2'] = {
		label = 'Police Tape',
		weight = 100,
		stack = true,
	},

	['sheriff_tape'] = {
		label = 'Sheriff Tape',
		weight = 100,
		stack = true,
	},

	['crimescene_tape'] = {
		label = 'Crime Scene Tape',
		weight = 100,
		stack = true,
	},

	['fire_tape'] = {
		label = 'Fire Tape',
		weight = 100,
		stack = true,
	}
```

***

## Created with qb-inventory

Adding the items in qb-core/shared/items.lua:

```lua
['police_tape'] = {
    name = 'police_tape',
    label = 'Police Tape',
    weight = 100,
    type = 'item',
    image = 'police_tape.png',
    unique = false,
    useable = false,
    shouldClose = true,
    combinable = nil,
    description = ''
},

['police_tape2'] = {
    name = 'police_tape2',
    label = 'Police Tape',
    weight = 100,
    type = 'item',
    image = 'police_tape2.png',
    unique = false,
    useable = false,
    shouldClose = true,
    combinable = nil,
    description = ''
},

['sheriff_tape'] = {
    name = 'sheriff_tape',
    label = 'Sheriff Tape',
    weight = 100,
    type = 'item',
    image = 'sheriff_tape.png',
    unique = false,
    useable = false,
    shouldClose = true,
    combinable = nil,
    description = ''
},

['crimescene_tape'] = {
    name = 'crimescene_tape',
    label = 'Crime Scene Tape',
    weight = 100,
    type = 'item',
    image = 'crimescene_tape.png',
    unique = false,
    useable = false,
    shouldClose = true,
    combinable = nil,
    description = ''
},

['fire_tape'] = {
    name = 'fire_tape',
    label = 'Fire Tape',
    weight = 100,
    type = 'item',
    image = 'fire_tape.png',
    unique = false,
    useable = false,
    shouldClose = true,
    combinable = nil,
    description = ''
},
```
