❔FAQ
German text still visible in HUD
How to fix:
Open
risk-hud\html\main.jsPress
Ctrl + Fand search for:const desc = isAdded ? 'Item hinzugefügt' : 'Item entfernt';Replace with:
const desc = isAdded ? 'Item added' : 'Item removed';Save the file and restart the script.
Item or weapon images not visible
How to fix:
Check folder paths:
risk-hud\html\images\items→ item imagesrisk-hud\html\images\weapons→ weapon images
Verify all images are
.pngfiles.Ensure filenames exactly match item names (case-sensitive).
Example: item
water→ filewater.png
Clear browser/NUI cache and restart the resource if images still don’t appear.
Custom Health & Armor Bars
Add the code below to any client.lua — it doesn’t matter which one, as long as it’s a client-side file.
Avoid placing it inside an escrow-protected script.
You can adjust colors, size, position. The default GTA bars will be hidden automatically.
Last updated