Price
UnknownA script by manups4e
Price
Unknown
A complete dashboard shouldn’t cost you performance.Most vehicle HUDs on the market rely on heavy web interfaces (NUI/HTML/CSS). This strains your CPU, causes micro-stutters, and often leads to “jittery” animations when looking around.
Aesir Vehicle Dashboard is different.
It is built entirely on GTA V’s Native Graphics Engine (Scaleform/.GFX).
No HTML, no CSS, no DOM repaints: just pure vector graphics rendered directly by the GPU.
The result? A dashboard that moves frame-by-frame with your game, perfectly synchronized, with 0.00ms idle CPU usage.
Key Features
Zero Performance Impact: Uses dual-loop logic (Fast Render / Slow Data) and delta thresholds. It sleeps when values don’t change.
Smart Anchor System: Mathematical positioning that mimics Rockstar’s native logic.
Complete Instrumentation:
PreviewSorry my video recording sucks 
Why Scaleform?1. The “Anchor” Problem:
Standard NUI scripts often struggle with positioning. They get cut off on 16:10 screens or stretch weirdly on curved monitors.
Aesir Dashboard queries the game engine for the exact Aspect Ratio and Safe Zone bounds, calculating the position mathematically. The dashboard will always be exactly where it needs to be, pixel-perfect.
2. The “Jitter” Problem:
HTML UIs often lag on tick because the browser update rate is decoupled from the game render loop.
Aesir Vehicle Dashboard renders on the game canvas. If you play at 144Hz, the UI spins at 144Hz.
Developer API & ExportsThis resource is fully standalone and developer-friendly. You can easily integrate it with your existing Seatbelt or vehicle management scripts.
-- Switch between visible and hidden
exports['dashboard']:Show()
exports['dashboard']:Hide()
exports['dashboard']:SetDigitalMode(1)
You can override the native logic to show specific icons based on your scripts.
-- Turn ON Seatbelt Light (ID 12) making it Red (2)
-- Colors: 0=Green, 1=Orange, 2=Red
exports['dashboard']:SetDashSymbol(12, 2)
-- Turn OFF Seatbelt Light (Return to default logic)
exports['dashboard']:SetDashSymbol(12, -1)
-- left arrow green blink (arrows blink automatically)
exports["dashboard"]:SetDashSymbol(0, 0)
-- red engine light on
exports["dashboard"]:SetDashSymbol(3, 2)
-- red engine light off
exports["dashboard"]:SetDashSymbol(3, -1)
Adapt the speedometer for supercars dynamically.
-- Change Speedometer (ID 1) to go up to 400 KM/h and make it Red
exports["dashboard"]:SetValuesRuntime(1, {
max_value = 400,
color = SColor.HUD_Red
})
Config file
Download & Installation[AesirDashboard] in your resources folder.ensure [AesirDashboard] to your server.cfg.| Code is accessible | Partially |
| Subscription-based | No |
| Lines (approximately) | 500 + scaleform code |
| Requirements | > 50 IQ |
| Support | Yes |
See what others are saying about this script.
Share your experience and help others.