> For the complete documentation index, see [llms.txt](https://dynyx-scripts.gitbook.io/dynyx-scripts/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://dynyx-scripts.gitbook.io/dynyx-scripts/chop-shop/installation-and-configuration/ox_inventory.md).

# ox\_inventory

## Items:

1. Copy the following:&#x20;

```lua
 ["cardoor"] = {
 	label = "Vehicle Door",
 	weight = 2500,
 	close = true,
 	stack = false,
 	description = "Door",
 	server = {
 		export = 'dynyx_chopshop.carrydoor'
 	}
 },
 ["carhood"] = {
 	label = "Vehicle Hood",
 	weight = 2500,
 	close = true,
 	stack = false,
 	description = "Hood",
 	server = {
 		export = 'dynyx_chopshop.carryhood'
 	}
 },
 ["cartrunk"] = {
 	label = "Vehicle Trunk",
 	weight = 2500,
 	close = true,
 	stack = false,
 	description = "Trunk",
 	server = {
 		export = 'dynyx_chopshop.carrytrunk'
 	}
 },
 ["carwheel"] = {
 	label = "Vehicle Wheel",
 	weight = 2500,
 	close = true,
 	stack = false,
 	description = "Wheel",
 	server = {
 		export = 'dynyx_chopshop.carrywheel'
 	}
 },
```

1. Go to the bottom of \`ox\_inventory\data\items.lua\`
2. Paste all the items before the last  `}`

## Images:

1. Go to `dynyx_chopshop\images` and copy all the images
2. Locate the `ox_inventory\web\images` folder
3. And paste all the images in there

   &#x20;
