Configuration
Location of Settings

LogoId
InteractWhitelist
EngineerWhitelist
Drinks
DripTray
WaterTank
Last updated

Last updated
Settings.LogoId = "http://www.roblox.com/asset/?id=13957858284"Settings.InteractWhitelist = {
List = {
{
["Group ID"] = 32675391,
["Minimum Rank"] = 100,
},
{
["Group ID"] = 12345678,
["Minimum Rank"] = 50,
},
},
}Settings.EngineerWhitelist = {
List = {
{
["Group ID"] = 32675391,
["Minimum Rank"] = 200,
},
{
["Group ID"] = 12345678,
["Minimum Rank"] = 150,
},
},
}Settings.Drinks = {
{
["Name"] = "Water", -- Ensure there's a tool in "ServerStorage.easyExpress Drinks" named this
["Image"] = "http://www.roblox.com/asset/?id=16767204649",
["Visibility"] = {
[1] = true, -- Default model
[2] = true, -- 9100 model (freestyle)
[3] = true, -- 7100 model (counter freestyle)
},
["Customisation"] = {
-- The following options only apply to the Freestyle models
["TextColor"] = Color3.fromRGB(255, 255, 255),
["TextVisible"] = true, -- Setting this to "false" will only show the image
["BtnColor"] = Color3.fromRGB(150, 150, 150),
},
["Fill"] = {
[1] = { Name = "Water", Amount = 100, Color = Color3.fromRGB(141, 182, 247) },
[2] = { Name = "Ice", Amount = 20, Color = Color3.fromRGB(255, 255, 255) },
-- Setting fill name to "Ice" will use Ice dispenser - only works on freestyle models
-- Color is not used when "Ice"
}
},
{
["Name"] = "Hot Chocolate", -- Ensure there's a tool in "ServerStorage.easyExpress Drinks" named this
["Image"] = "http://www.roblox.com/asset/?id=16767204649",
["Visibility"] = {
[1] = true, -- Default model
[2] = true, -- 9100 model (freestyle)
[3] = true, -- 7100 model (counter freestyle)
},
["Customisation"] = {
-- The following options only apply to the Freestyle models
["TextColor"] = Color3.fromRGB(255, 255, 255),
["TextVisible"] = true, -- Setting this to "false" will only show the image
["BtnColor"] = Color3.fromRGB(150, 150, 150),
},
["Fill"] = {
[1] = { Name = "Water", Amount = 75, Color = Color3.fromRGB(141, 182, 247) },
[2] = { Name = "Milk", Amount = 25, Color = Color3.fromRGB(255, 255, 255) },
}
},
}Settings.DripTray = {
EmptyRequired = true,
EmptyCount = 15,
}Settings.WaterTank = {
RefillRequired = true,
RefillCount = 10,
}