Now that we have created the shop we want, and the stash we want linked to the that Fridge, we now need to add it into the config.
Config.Fridges = {
["burgershot"] = { -- MustBeUnique
label = "Open Fridge",
icon = "far fa-clipboard",
menu_header = "| Burgershot Fridge |",
stash_label = "Open Fridge",
shop_label = "Order Stock",
close_title = "⬅ Close Fridge",
location = vector3(-1196.62, -901.34, 13.89),
width = 1,
depth = 1,
heading = 347.75,
minz = 13.6,
maxz = 14.1,
distance = 2,
job = "burgershot",
stash = Config.FridgeStashs["bs_fridge"], -- Make sure it exists in Config.FridgeStashs
shop = "bs_shop" -- Make sure it exists in Config.FridgeShops
},
}