Config
Drinks
local config = {
{
Name = "Coca-Cola",
DecalId = "rbxassetid://17767142191", -- Drink Icon for drink screen
Flavors = {
{Name = "Cherry", DecalId = "rbxassetid://17767141921", Enabled = true},
{Name = "Lime", DecalId = "rbxassetid://17767141701", Enabled = true},
{Name = "Orange", DecalId = "rbxassetid://17767141452", Enabled = true},
{Name = "Vanilla", DecalId = "rbxassetid://17767140822", Enabled = true},
{Name = "Raspberry", DecalId = "rbxassetid://17767141163", Enabled = true}
},
Color = ColorSequence.new(Color3.fromRGB(255, 170, 127)),
Glass = "rbxassetid://112097485861057" -- edit the start screen image here
},
{
Name = "Sprite",
DecalId = "rbxassetid://17767528264", -- Drink Icon for drink screen
Flavors = {
{Name = "Cherry", DecalId = "rbxassetid://17767536779", Enabled = true},
{Name = "Lime", DecalId = "rbxassetid://6888858952", Enabled = false},
{Name = "Orange", DecalId = "rbxassetid://6888858953", Enabled = false},
{Name = "Vanilla", DecalId = "rbxassetid://17767536586", Enabled = true},
{Name = "Raspberry", DecalId = "rbxassetid://6888858955", Enabled = false}
},
Color = ColorSequence.new(Color3.fromRGB(255, 255, 255)),
Glass = "rbxassetid://90179612461807" -- edit the start screen image here
}
return config
You can add more drinks and flavors with the config.
Last updated