❓F.A.Q
🚗 Car
Fuel does not display correctly / It doesn't work
For this go to wais-hudv6/config.lua.
Go to
Config.GetVehicleFuelFunction and put export for your Custom Fuel script, if any, and return this value with return. Example:
Config.GetVehicleFuel = function(vehicle)
-- Original one
--return GetVehicleFuelLevel(vehicle) or 0.0
return exports["my_fuel_script_name"]:GetFuelLevelFuncName(vehicle)
endBlocking the belt, carhud or music system in some vehicles or classes
For this go to wais-hudv6/config.lua.
Go to
Config.BlacklistedVehiclestable and add the vehicle or class as in the examples.-- If its a model [`t20`] = { ["carhud"] = true, },-- If its class [13] = { ["belt"] = true, ["music"] = true, ["carhud"] = true, },
Deactivating the music system
For this go to wais-hudv6/config.lua.
In the
Config.MusicSystemtable, find the variable[‘disable’]and set it totrue.Now the music system in the car control menu will be completely disabled (including events and codes).
Nearby location Add/Remove
For this go to wais-hudv6/bridge/editable/location.lua.
Find the category of the location you want to add or delete, then add the new location by going one below the last vector3 in the category, then put a comma at the end of the vector3 you added. Find the location in delete vector3 and delete it with the comma at the end
Change Default Fuel Type
For this go to wais-hudv6/web/public/config.json.
Find the variable ‘fuelType’ and change the place between the quotes on the right side. Types: litres or gallons
🌎 Map
Minimap becomes invisible / disappears and comes back
For this go to wais-hudv6/config.lua.
If you are using a postal map, find the
Config.PostalMaptable and set the [‘enabled’] variable totrue. This will fix the map disappearance.
How to keep the map always active ( Show map on foot or Always )
For this go to wais-hudv6/config.lua.
Find the variable
Config.ShowMapOnFoot = falseand make ittrue.
Show Postal Shortly?
For this go to wais-hudv6/config.lua.
Go to the
Config.PostalMaptable and set the[‘showNearPostal’]variable totrue.
Change Default Map Type
For this go to wais-hudv6/web/public/config.json.
Find ‘mapType’ for the map type and change the ‘square’ between the quotes on the right side. Types: square, circle.
Postal Addresses Wrong
If you think the postals are wrong, you may be using a different postalmap.
For the correct result, you can install the latest postal map from the link above.
If you do not want to install it, you can get the locations of your own postal addresses.
( wais-hudv6/bridge/editable/postal.lua )
Map is not positioned / Map Animation does not appear
Recommended resolutions to use this feature:
1280x720 1366x768 1920x1080 2560x1440
Map animation and positioning work at this resolution. Other intermediate screen resolutions are not yet supported. Stabilisation will be done with future updates.
Disable Map Animation
For this go to wais-hudv6/config.lua.
Find the value
Config.DisableMapAnimation = falseand then change thefalsevalue totrue.
💸 Money
Cash / Money is showing 0
For this go to wais-hudv6/config.lua.
If money is item in your inventory, go to
Config.MoneySettingsand set[‘isItem’]variable totrue. ( In ox_inventory, money is not an item. )Your money will now appear in the hud information section.
Change Money Prefix and Symbol
For this go to wais-hudv6/web/public/config.json.
Find the
Moneytable and change the text between the quotes on the right side of the ‘prefix’ and ‘symbol’ variables.
📋 Others
Debug Prints
For this go to wais-hudv6/config.lua.
Find the variable
Config.ShowDebug = falseand make ittrue.
Timer Location
For this go to wais-hudv6/web/public/config.json.
Find the variable ‘timerLocation’ and change the data on the right side. Replace ‘en-US’ with the shortcode for your country or the main language supported by the server.
Change Language
For this go to wais-hudv6/config.lua.
Then find
Config.Language = ‘en’and type a valid language file name ( ar, cz, ro, it, fr, fr, de, en )
Status Alerts ( Hunger Thirst )
For this go to wais-hudv6/config.lua.
Find the variable
Config.SendStatusAlert = falseand make ittrue
Statuses Shows 0 ( ESX )
This error usually occurs because you have customized esx_status or because it is outdated.
Another common issue is that the “esx_status:onTick” event has been modified. Therefore, reset the script to its default state.
Another problem is that the status data is empty. In such cases, you need to process the status data by eating or drinking something using scripts such as esx_basicneeds.
Custom Weapon and Image addition
For this go to wais-hudv6/bridge/editable/weapons.lua.
At the bottom of the file we will add a new table as below. Thanks to this table, the weapon name will appear in hud:
To add a photo of the weapon, you need a ‘Hash’ type expansion of your weapon name. Use here for this
After typing your weapon name correctly on this site, you will find the hash address of your weapon. Copy this hash address and go to: wais-hudv6/web/public/images/weapons
Drag the weapon photo here and then paste the hash address you copied into the file name. Afterwards, you can see the weapon photo in the hud by restarting the script after the refresh command.
NEW Method: You can do this without converting to hash. You can add a new image with the weapon name, then find the table for that weapon in weapons.lua and specify the custom image name. Like this:
Changes in Config.json (Default Specification) will be valid for people who have not made settings before. People who have already made customisation will need to reset their settings for it to be valid.
Use Stress System
You can see the stress system next to the health bars by making the
Config.StressSystemvariabletrue. You should use an additional script to increase or decrease your stress.
Change Server Logo
For this go to wais-hudv6/web/public/images.
In this file, you will see the “server-logo.png” file
Place your own server logo here. Then delete the server-logo.png file and rename the file you dragged over to “server-logo.png”
Disable Right Corner
For this go to wais-hudv6/config.lua.
To do this, locate the
Config.DisableRightCorner = falsevariable and change thefalsevalue totrue.
Resmon Value
Note: As is well known, scripts in FiveM run on a single core. Therefore, your processor's architecture and single-core performance directly affect the resmon value.
On older or lower-frequency processors, the code takes longer to execute, so the resmon value naturally appears higher. On newer, high-performance processors, the same code runs much faster, so the resmon value may appear lower (even 0.00).
Since not all processors have the same structure or speed, it is not possible to achieve a 0.00 ms resmon value on every system — this is entirely due to hardware differences.
This situation has nothing to do with the written code or script optimization; the difference is entirely dependent on the processor's power and architecture.
The Resmon values were recorded in an environment where the computer was under the lightest load and usage was minimal.
Maximum Armor higher than 100
For this go to wais-hudv6/config.lua.
If your maximum armor level is above 100, you should write it here. This way, the HUD bar will act accordingly.
📛📛 ATTENTION: Does not modify or set player data. It is only an offset setting for visual appearance.
Disable Location / Widget
For this go to wais-hudv6/config.lua.
If you set it to
true, the location and compass will not be displayed. If the nearby postal address is also not visible, the element there will be automatically hidden. If set tofalse, the Compass and Location will be displayed.
‼️Hud disappears in an instant
If you're reading this headline, I know you're in a difficult situation. I was experiencing the same issue on my own server. However, this issue is not related to HUD. The entire user interface is crashing.
First, I will post a few videos and screenshots here as evidence related to the issue.
I have confirmed that the issue stems from YouTube's updated APIs.

The scripts that typically play the biggest role in causing this issue are:
Car radio scripts. Music broadcast to everyone via YouTube inside the vehicle.
Scripts that function as sound libraries, such as xSound.
At this point, the most appropriate solutions, as I have implemented on my own server, are to disable these and similar scripts or to disconnect from YouTube.
A GitHub issue has been created regarding xSound, and there are cases worldwide where such issues have caused Chromium to crash:
🎨 Change, Export / Import Customizations
Export Customizations
Use the /hud command to change elements and some options.
Press PageUp to open editor mode (Default Key)
Once all changes are complete, scroll down a bit in the “General” tab using /hud and click the ‘Export’ button in the “Export Customizations” option.
Import Customizations
Paste the JSON data you copied into an IDE, delete the top and bottom { } brackets, and copy the remaining data.
Replace the copied data with the data here: wais-hudv6/web/public/Config.json
If you do something wrong in this section, the hud will be damaged or will not work. Please watch the video.
There are no more available yet, please open a ticket if the topics here are not suitable for what you are looking for.
Who developed it / How can I get help
You can recognise our script developers by the short names of the script. Scripts with short name ‘Wais’ are made by Ayazwai.
You can visit our Discord address to ask questions in your mind / To get support
Last updated