> For the complete documentation index, see [llms.txt](https://docs.wise-scripts.vip/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.wise-scripts.vip/scripts/wise-faction/example-configs/shop.md).

# Shop

{% code lineNumbers="true" %}

```lua
-- Factions Shop Items
Config.Shop =
{
	Active = true, -- Factions can use Shop (Hides Button in Menu)
	Items = {
		{
			label = "Fish",
			name  = "fish",
			type  = "item",
			price = 120,
			img   = "sandwich-5380235-4497584.png",

		},
		{
			label = "Phone",
			name  = "phone",
			type  = "item",
			price = 1000,
			img   = "phone.png",
		},
		{
			label = "Sandwich",
			name  = "sandwich",
			type  = "item",
			price = 50,
			img   = "sandwich-5380235-4497584.png",
		}
	}
}
```

{% endcode %}
