Groot Development
Store
  • 👋Welcome
  • Coding Information
    • Register Key Mapping
  • ASSETS
    • 🕙g-duty
      • Why?
      • Installation
      • Config.lua
    • 📋g-scoreboard-V1
      • Installation
      • Config.lua
    • 📋g-scoreboardV2
      • Installation
      • Config.lua
      • Exports & Events
    • 🎁g-giftcard
      • Installation
      • Config.lua
      • Export
    • 🏡g-job-vehicle-shop
      • Installation
      • ⚙️Configuration
        • Exports
        • Create Vehicle Management Panel
        • Create Vehicle Shops
    • 💯g-redeem-code
      • 🗒️Features
      • Installation
      • ⛔Note
      • ⚙️Configuration
        • Create New item
    • 📖g-pausemenu
      • 🗒️Features
      • Installation
      • ⚙️Features Guide
        • Info Buttons
        • socials Buttons
        • Rules
        • Organization Avatar
    • 🛠️g-crafting
      • 🗒️Features
      • 📦Patch Details
      • Installation
      • ❔Why
      • ⚔️Exports
      • Configuration
        • How to Create New Station
        • How to Create crafting time for an item.
    • 🛒g-shopsV2
      • 🗒️Features
      • 📦Patch Details
      • Installation
      • ⚔️Exports
      • Configuration
        • How to Create New Shop
        • How to create new item
    • 🔧g-adv-modern-repairkit
      • 🗒️Features
      • 📦Patch Details
      • Installation
      • ⚙️Configuration
  • 📖g-pausemenu-simplified
    • 📦Patch Details
    • Installation
    • ❔Why
    • Configuration
      • Git Dev Patchs
  • FREE RELEASE
    • 🎁g-starterpack-gift
      • Installation
      • Config.lua
    • 👨‍🔬g-employee-chat-list
      • Installation
    • g-notifications
      • Installation
      • Notification
      • Framework Integration
      • Remove Notification By ID
Powered by GitBook
On this page
  1. g-pausemenu-simplified

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 1 month ago

📖