> 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/items.md).

# Items

## Create items in your inventory

For example, for ox\_inventory: adding the items in `ox_inventory/data/items.lua`:

```lua
	['idcard'] = {
		label = 'Document',
		weight = 50,
		stack = false,
		close = true
	},

	['firearm_card'] = {
		label = 'Firearms Licence',
		weight = 50,
		stack = false,
		close = true
	},
	
	['drive_license'] = {
		label = 'Driving Licence',
		weight = 50,
		stack = false,
		close = true
	},
```
