Skip to content

RAPTOR – Vehicle Stability System for FiveM

Overview 🛠️

RAPTOR is a high-fidelity vehicle stability system for FiveM that simulates real-world ABS, TCS, and ESP systems with precision. Designed for realism and smooth in-game integration, RAPTOR improves vehicle handling during hard braking, acceleration, and cornering scenarios.

Features 🚀

UI Indicators 📸

Each system (ABS, TCS, ESP) has a clean UI box that:

These icons are controlled by the NUI messages sent from abs.lua, tsc.lua, and esp.lua in the client/ folder.

Installation 📁

  1. Clone the repository to your local machine.
  2. Move the resource into your FiveM resources/ folder.
  3. Ensure the following files are in your fxmanifest.lua under client_scripts and ui_page:
  4. client_scripts {
      'client/abs.lua',
      'client/tsc.lua',
      'client/esp.lua'
    }
    ui_page 'nui/index.html'
    files {
      'nui/index.html',
      'nui/config.js',
      'nui/*.png'
    }
    
  5. Add ensure raptor to your server.cfg.

Configuration ⚙️

All main tuning values are defined at the top of each script (abs.lua, tsc.lua, esp.lua):

-- ABS parameters in abs.lua
-- TCS parameters in tsc.lua
-- ESP parameters in esp.lua

Debugging 🔍

Enable debug flags in each script to see real-time console logs:

Scripts 📜

Client-side Lua scripts located in client/: