Configuration
Branding
Customize the header shown in the shop UI.
The top-left of the shop UI shows your server branding. Control it with Config.ServerLabel.
config.lua
Config.ServerLabel = {
title = 'ALAMO',
subtitle = 'STUDIO',
description = 'Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam'
}
| Key | Type | Description |
|---|---|---|
title | string | Main brand text (usually your server name). |
subtitle | string | Smaller text shown next to the title. |
description | string | A short tagline next to the title. |
Example
config.lua
Config.ServerLabel = {
title = 'LOS SANTOS',
subtitle = 'ROLEPLAY',
description = 'Your one-stop shop for everything you need.'
}
These values are passed straight to the NUI when a shop opens. They are not translated by the locale system — type them in the language you want shown.

