Config

Rooms

The config below is an example on how to add more rooms.

["First Floor"] = {
{
				Number = "100",
				Type = "Room",  -- "Room/Suite/Deluxe",
				Price = "70.00", -- Price "1.00", "Free", Gamepass
				GamepassID = nil, -- Set to gamepass ID if Price is set to Gamepass
				AvailableColour = Color3.fromRGB(0, 184, 6),
				TakenColour = Color3.fromRGB(195, 0, 0)
			},
},

["Second Floor"] = {
			{
				Number = "200",
				Type = "Room",  -- "Room/Suite/Deluxe",
				Price = "80.00", -- Price "1.00", "Free", Gamepass
				GamepassID = nil, -- Set to gamepass ID if Price is set to Gamepass
				AvailableColour = Color3.fromRGB(0, 184, 6),
				TakenColour = Color3.fromRGB(195, 0, 0)
			},

Last updated