Configuration

Location of Settings

Go to the 'Addons' folder, open 'Mobile Ordering System' then double click on 'Settings'.

Below is what the default configuration looks like.

GiveReceipts

Settings.GiveReceipts = true

This setting will determine whether placing orders using the MOS will result in the player being given a receipt.

Set to false to disable.

StartText

Settings.StartText = "Fancy a bite?"

This setting will determine the text shown on the start order screen.

GUIDraggable

Settings.GUIDraggable = true

This setting will determine whether the MOS GUI can be dragged across the screen by players.

Set to false to disable.

StartImages

Functions the same as the Kiosk start images.

Colors

Settings.Colors = {
	PrimaryBg = Color3.fromRGB(18, 0, 126),
	SecondaryBg = Color3.fromRGB(10, 0, 68),

	Button = Color3.fromRGB(2, 0, 91),

	Username = Color3.fromRGB(0, 255, 255),
	Text = Color3.fromRGB(255, 255, 255),

	ReceiptBg = Color3.fromRGB(255, 255, 255),
	ReceiptStroke = Color3.fromRGB(0, 0, 0),
	ReceiptText = Color3.fromRGB(0, 0, 0),
}

If you're having issues with the logo appearing, try set the Logo colour to Color3.fromRGB(255, 255, 255)

To edit the colours, click inside of the (), so for example: Color3.fromRGB(CLICK INSIDE OF HERE)

After doing so, you'll see a colour wheel appear, click it.

You'll then be able to customise the colour, press 'OK' once done.

Currency

Due to technical limitations, the MOS currency is separate from the order handler.

We do not provide support for modifying the currency on MOS or the Order Handler, however you can find the currency function on MOS here:

Go to the 'Addons' folder, open 'Mobile Ordering System' then double click on 'MobileCurrency'.

Last updated