๐ŸŒญSickFoodStands

Config

The Config contains everything you will ever need to change or add! The options are endless and adding more food stands is as simple as copy paste and the changing of some items!

Three Different Menus are in use:

  1. Civilian menu for browsing while waiting to order!

  2. Toppings to either just play an anim like you are adding toppings or there is an option to make it give you the item!

  3. Cooking menu is locked behind a job and the only reason ESX is currently needed for this script!

Civilian Menu

Civilian Menu is used for browsing what the shop has to offer! Make sure if you change shop items to add them here as well! Price is just for visual but should be set to what the shops want them sold for!

menu = {
    coords = vec3(238.1508, -818.6410, 30.1500), --Civilian menu location
    size = vec3(1,1,1), -- Size for BoxZones
    rotation = 90,-- Rotation for BozZones
    label = 'See the Menu', -- target label
    options = {
        {
            title = 'Hot Dog', -- item label
            description = 'Hot off the grill. \n Price: $5', --change price here just visual
            icon = 'hand', -- item icon
            disabled = true, -- this is so you can't click on it
        },
        {
            title = 'Hamburger',
            description = 'No cheese please. \n Price: $5', --change price here just visual
            icon = 'circle',
            disabled = true,
        },
        {
            title = 'CheeseBurger',
            description = 'Yummm Cheese! \n Price: $5', --change price here just visual
            icon = 'bars',
            disabled = true
        }
    }
},

Toppings Menu

Toppings could just be an animation that playes and you RP adding items to your burgers/hotdogs OR you could add items to give!

Cook Menu

Cooking menu is where the shops will make the items to sell! Make sure you look over the options here as there is alot to it!