Configuration

System Settings

Config.SystemSettings = {
	Language = "en", -- fr | tw | hi etc
	theme = 'gblue', -- gblue | theme2 | theme3 | theme4 | theme5 etc..
	position = "center", -- "left" | "right" | "center",
	EnableCharacterSwitch = true,
	EnableSocials = true,
	HideDisplayRadar = true, -- Enable this to hide the map when the pause menu is open
}

Social Buttons

Config.SocialButtons = {
	[1] = {
		label = "Discord",
		link = "https://discord.com",
		icon = "fa-brands fa-discord", -- https://fontawesome.com/search?o=r&m=free
		colors = {
			bgcolor = "#5865F2", -- Discord Blue
			textcolor = "#FFFFFF",
			iconcolor = "#FFFFFF",
		},
	},
	[2] = {
		label = "Twitter",
		link = "https://twitter.com",
		icon = "fa-brands fa-twitter",
		colors = {
			bgcolor = "#1DA1F2", -- Twitter Blue
			textcolor = "#FFFFFF",
			iconcolor = "#FFFFFF",
		},
	},
	[3] = {
		label = "Instagram",
		link = "https://instagram.com",
		icon = "fa-brands fa-instagram",
		colors = {
			bgcolor = "#E1306C", -- Instagram Pink
			textcolor = "#FFFFFF",
			iconcolor = "#FFFFFF",
		},
	},
	[4] = {
		label = "YouTube",
		link = "https://youtube.com",
		icon = "fa-brands fa-youtube",
		colors = {
			bgcolor = "#FF0000", -- YouTube Red
			textcolor = "#FFFFFF",
			iconcolor = "#FFFFFF",
		},
	},
}

Job Config

Config.Jobs = {
	{
		icon = "fa-solid fa-building-shield", -- https://fontawesome.com/search?o=r&m=free
		jobName = "police",
		jobLabel = "Police",
	},
	{
		icon = "fa-solid fa-fire-extinguisher",
		jobName = "firefighter",
		jobLabel = "Firefighter",
	},
	{
		icon = "fa-solid fa-briefcase-medical",
		jobName = "ambulance",
		jobLabel = "Ambulance",
	},
	{
		icon = "fa-solid fa-car",
		jobName = "taxi",
		jobLabel = "Taxi",
	},
}

Last updated