Today I “fixed” it for esx_families, I edited that line inside addoninventory.lua from Items to items. It works but I’m not sure still is it the right way or is something else problem. You can try it and see does it work normal or is then something else broken.

Edit: Found better solution. In esx_addoninventory/server/main.lua on top of script you have this

local InventoriesIndex, Inventories, SharedInventories, Items = {}, {}, {}, {}

change that to:

Items = {}
local InventoriesIndex, Inventories, SharedInventories = {}, {}, {}
1 Like