I’m making a revamp of my quite popular yet awfully designed cafe ordering system.
I thought it would be a better idea to ask the community what they think about the UI before I just go on with just doing as I please.
This is a video of the interface, let me know what you think! https://gyazo.com/9db818eb6e8d3224fa79a2dfbadca869
There will be themes in the UI allowing people to change the colour or even make custom themes!
It’s also a very customisable system, players can modify the categories with a module script like this:
categories = {
["Breakfast"] = { -- Ensure to add a comma after every food you add! Ensure all text is wihin qutation marks like this "example", not example,
"Avocado Toast w/ Tomato and Onion",
"Eggs and Bacon",
"\"Big Brekkie\"",
"Gourmet Pancakes",
"Eggs Benedict"
},
["Lunch"] = { -- Ensure to add a comma after every food you add! Ensure all text is wihin qutation marks like this "example", not example,
"Rib Eye Steak w/ Chips",
"Rib Eye Steak w/ Salad",
"Steak Wrap",
"Vegan Burger",
"Cheeseburger",
"Hamburger"
},
["Sides"] = { -- Ensure to add a comma after every food you add! Ensure all text is wihin qutation marks like this "example", not example,
"Small Chips",
"Medium Chips",
"Large Chips",
"2x Hash Brown",
"Mash Potatoes"
},
}
It’s all equipped with scrolling frames to allow unlimited possibilities.
- Yes
- No
0 voters
PS: Before its reccomended, I could add things like Fries > Large, Medium or Small BUT I can’t picture how players would set this up also how buggy it’d be lol but I’ll try.