πCar HUD
Manual Guide
INSTALLATION
1. Download Resource
To get started, you'll need to download your new resource previously purchased from shop. For that we must log in with our account at keymaster and look for the Asset grants section, there we will find our complete package.
2. Unzip and Add to Resources
- Unzip the downloaded folder. 
- Copy the - stoned-carhudfolder into your serverβs resources directory.
3. Ensure in server.cfg
server.cfgAdd this line in your server.cfg below essential resources:
ensure stoned-carhud4. Restart Server
Restart your FiveM server to load the script.
CONFIGURATION
5. Main Config (config.lua)
config.lua)This file contains all major settings for the HUD.
Language Settings
Config.Locale = 'en' -- Available: 'en', 'es', 'fr', 'de', 'it', 'nl', 'br', 'pt'You can also edit translations in
stoned_carhud/html/scripts/locales.js.
Command or Hotkey
Change the command used to open the HUD configuration menu:
Config.Command = 'carhud' -- Examples: 'carhud', 'hudconfig', 'hud', 'carhudmenu'
Config.Key = ["F5"]Vehicle Settings
Config.vehicle = {
  speedUnit = 'kmh', -- 'kmh' or 'mph'
  maxSpeed = 350,    -- Maximum speed displayed
  keys = {
    seatbelt = Keys["B"],       -- Seatbelt key
    cruiser = Keys["CAPS"],     -- Cruise control key
    signalLeft = Keys["LEFT"],  -- Left turn signal
    signalRight = Keys["RIGHT"],-- Right turn signal
    signalBoth = Keys["DOWN"]   -- Emergency lights
  }
}Sound Settings
Config.sounds = {
  system = 'interactsound', -- 'interactsound', 'xsound', or 'none'
  files = {
    buckle = {file = 'seatbelton', volume = 0.4},
    unbuckle = {file = 'seatbeltoff', volume = 0.9},
    seatbeltWarning = {file = 'seatbeltwarning', volume = 0.2},
  }
}6. Translation / Language (locales.js)
locales.js)- Located at - stoned_carhud/html/scripts/locales.js
- Here you can change translations for any HUD text in supported languages. 
- Example: - "Speed",- "Seatbelt On/Off",- "Cruise Control"labels.
USAGE
7. Open HUD Configuration
- Command: - /carhud(or the command defined in- Config.Command)
- Hotkey: - F5(default, customizable via GTA V key codes)
8. Adjust HUD
- Drag and resize HUD elements on screen 
- Adjust speedometer, RPM, indicators, seatbelt, and cruise control 
- All changes are automatically saved per player 
PERFORMANCE
- Lightweight and optimized 
- Idle: 0.0ms 
- Active: 0.01β0.03ms client-side 
Last updated
Was this helpful?