Infinity Store
Tebex StoreDiscord
  • CFX Auth
  • Resources
    • Scoreboard
      • Installation
      • Configuration
      • Robbery Integration
      • Exports
    • Squad system
      • Installation
      • Configuration
      • Exports
    • Notification
      • Installation
      • Configuration
      • Exports
    • Dashboard V2
      • Installation
      • Configuration
      • Webhooks
      • Exports
    • Job choice
      • Installation
      • Configuration
      • Exports
    • Pausemenu
      • Installation
      • Configuration
      • Exports
    • Playtime Shop
      • Installation
      • Configuration
      • Client events
      • SQL
      • Exports
    • Identity
      • Installation
      • Configuration
      • Exports
    • Keyguide
      • Installation
      • Configuration
      • Exports
    • HUD + UI LIB
      • Installation
      • Configuration
      • Customization
      • Exports
  • Military resources
    • Mortar
      • Installiation
      • Configuration
      • Exports
    • Bomb drone
      • Installiation
      • Configuration
      • Exports
    • Claymore
      • Installiation
      • Configuration
      • Exports
Powered by GitBook
On this page
  • Can I customize the HUD elements?
  • Can players customize the HUD color individually?
  • How do HUD presets work?

Was this helpful?

  1. Resources
  2. HUD + UI LIB

Customization

Can I customize the HUD elements?

Yes, the HUD elements are fully customizable via the configuration file. Under Config.HUDElements, you can easily:

  • Enable or disable specific HUD components

  • Set their default position on the screen using the top and left values

  • Define their default state, such as whether a component should be active or hidden by default

Config.HUDElements = {
	["ServerInfo"] = { top = 1, left = 81, active = true, disabled = false },
	...
}

Can players customize the HUD color individually?

No, the HUD color is static and cannot be customized per player. The color is set globally by the server owner to match the server's theme and cannot be overridden by individual users.

You can configure the HUD color using the Config.HUDColor setting in RGB format:

Config.HUDColor = "255, 95, 0" -- r, g, b

How do HUD presets work?

Presets allow players to save and quickly switch between different HUD configurations they like. There are 5 available preset slots, and each slot can store a full layout of the HUD, including the position and visibility of each component.

PreviousConfigurationNextExports

Last updated 8 hours ago

Was this helpful?