Aesir Vehicle Dashboard - Native Scaleform | Ultrawide Support | Zero Performance Cost
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.
- Ultrawide / Super-Ultrawide Support: No stretching on 21:9 or 32:9 monitors.
- Safezone Aware: Automatically respects the player’s Safe Zone settings.
- Resolution Independent: Looks crisp on 720p and 4K alike.
Complete Instrumentation:
- Analog & Digital Modes: Switch between Needles or Numeric readout on the fly.
- Vital Stats: RPM, Speed (KPH/MPH), Fuel Level, Engine Health.
- Indicators: Turn Signals, High Beams, Handbrake, ABS, Engine Warning.
- Gameplay Integrations: Dedicated icons for Seatbelt and many more symbols.
Preview
Sorry 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 & Exports
This resource is fully standalone and developer-friendly. You can easily integrate it with your existing Seatbelt or vehicle management scripts.
Toggle Display Mode
-- Switch between visible and hidden
exports['dashboard']:Show()
exports['dashboard']:Hide()
Switch between Analog(0) and Digital (1)
exports['dashboard']:SetDigitalMode(1)
Control Indicators
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)
Configure Gauges at Runtime
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
})
More infos and explanations for the runtime exports in the Config file
Download & Installation
- Download the resource from [GitHub / Tebex Link].
- Put
[AesirDashboard]in your resources folder. - Add
ensure [AesirDashboard]to yourserver.cfg. - Enjoy a smoother driving experience!
| Code is accessible | Partially |
| Subscription-based | No |
| Lines (approximately) | 500 + scaleform code |
| Requirements | > 50 IQ |
| Support | Yes |
Check my other scripts involving scaleforms movies!
- ScaleformUI [Free] - ScaleformUI - A lightweight, fast and fun API
- ScaleDraw [Free] - [FREE][ESX,QB,OX,WHATEV..] ScaleDraw [STANDALONE]
- Rounded Minimap [Paid] - [PAID] [Standalone] Rounded Minimap [ESX] [QB] [ALL Frameworks to be tagged go here]
- Bubble Emotes [Paid] - [PAID] Bubble Emotes – Express Yourself Visually! [STANDALONE] [RP]
- Brynhildr Inventory (Valkyr series) [Paid] - [RELEASE] [PAID] [STANDALONE] 🚀 Brynhildr 3D Inventory
- Eir HUD (Valkyr series) [Paid] - [Paid] [ESX-QB-QBOX-STANDALONE] Eir HUD - Valkyr Series
- Aesir Compass [Paid] - [Paid] [Standalone] Aesir Compass

