Kiosks

Location of Settings

Go to the 'Kiosks' folder, open 'Runtime_K' then double click on 'Settings'.

Below is what the configuration looks like before making any changes.

Settings.Logo = "http://www.roblox.com/asset/?id=17854517045"

This setting will determine the logo shown on the GUI. Ensure you have a valid image ID or it will not appear.

StartText

Settings.StartText = "Quality\nfrom the farm\nto the Burger."

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

If you wish to use multiple lines, place \n (as shown above) to go onto a new line.

StartImages

Settings.StartImages = {
	"http://www.roblox.com/asset/?id=17854454559",
	"http://www.roblox.com/asset/?id=17854462070",
}

This setting will determine which images will be shown on the start order screen. Ensure you have a valid image ID or it will not appear.

The above example also shows how multiple images should be added.

Colors

Settings.Colors = {
	Logo = Color3.fromRGB(255, 255, 255),

	Primary = Color3.fromRGB(0, 0, 90),

	StartBtn = Color3.fromRGB(0, 85, 127),
	StartBtnStroke = Color3.fromRGB(0, 128, 255),
}

Logo is what colour the logo will be, however it will only work if the logo image is fully-white.

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.

Last updated