Ox Inventory Trunk help

Hi, i have ox inventory and target however the option to access trunk storage from outside the vehicle doesnt show up from outside the vehicle? Anyone able to assist? Thanks.

Is this for all cars or specific vehicles? Some vehicles don’t have trunks or have front trunks and you need to add them to the ox_inv config or fix the vehicle if it has no trunk “bone”.

It is all of my vehicles I’ve had this issue with. Vanilla and add on.

Have you ever tryed click on the Y or PageUp to open the trunck? Normally the ox_inventory have this keys to open the trunk, don’t with the target

No, let me try that standby

No. did not work

But the ox_inventory script have the default keys to open the trunk, you have to see the fivem settings, to see the trunk keys

I was having the same issue and just learned the fix. You have to set a secondary inventory keybind, it cannot be the same keybind as your primary inventory keybind as it will throw an error in your F8 console.

Screenshot 2026-08-18 174318

The target option isn’t showing because ox_inventory’s target integration is off by default — having ox_target installed isn’t enough on its own.

In init.lua it reads the setting like this:

target = GetConvarBool('inventory:target', false),

So add this to your server.cfg and restart:

setr inventory:target true

setr rather than set — it has to be a replicated convar or the client never sees it, and that’s the usual reason people add the line and nothing changes.

That’s a separate thing from the keybind answers above. The keybind is the non-target way in, which is why it works for people — but you asked about the option not appearing when you look at the boot from outside, and that’s this convar.

Two things after you enable it: some vehicles genuinely have no trunk bone, or have a front trunk, so check on a Sultan or similar first before concluding it’s still broken. And ox_inventory’s config has a max distance for the trunk zone if it appears but only very close up.

Fixed, thank you everyone.