RegisterShop
Registers a new shop with the inventory system.
Bridge.Inventory.RegisterShop(shopData)local Bridge = exports['community_bridge']:Bridge()
local shopData = {
name = "General Store",
items = {{item = "water", price = 10}}
}
Bridge.Inventory.RegisterShop(shopData)Last updated