β’ Custom Edits: You can freely change the branding, the colors or translate the texts.
β’ Framework: Standalone
β’ Config option for the music to be played outside or inside vehicle only.
β’ You can disable the drift mode in the config.
β’ The neon lights can also be disabled so it works only if the player installs the neons at the mechanic workshop.
β’ The loops and updates intervals can all be configured to optimize the script to your liking.
β’ Command and keybind can be changed
β’ You can easily blacklist a vehicle class to not access the vehicle menu such as Trains.
β’ Custom event to open the menu in your Radial Menu or any other script.
Lua config file
-- Vehicle classes are identified by integer values. Common classes include:-- [0] Compacts, [1] Sedans, [2] SUVs, [3] Coupes, [4] Muscle, [5] Sports Classics,-- [6] Sports, [7] Super, [8] Motorcycles, [9] Off-road, [10] Industrial, [11] Utility,-- [12] Vans, [13] Cycles, [14] Boats, [15] Helicopters, [16] Planes, [17] Service,-- [18] Emergency, [19] Military, [20] Commercial, [21] Trainszr_config = {}-- Vehicle Class Blacklist Configuration:-- To blacklist a vehicle class, set its value to 'true'.zr_config.VehicleClassBlacklist = { [21] =true, -- Trains}-- Command and Shortcut to open the menuzr_config.OpenCommand ='vehmenu'zr_config.DefaultKey ="K"-- Set to true if you want the neon settings to be enabled without the need of installing itzr_config.InstalledNeon =true-- Set to true if you want players to switch to drift modezr_config.EnableDriftMode =true-- Neon lights durations configurationzr_config.neonFlashMode =250zr_config.neonPulseMode =50zr_config.neonShuffleMode =500-- Headlights durations configurationzr_config.xenonFlashMode =250zr_config.xenonShuffleMode =500-- Script Data Update loop (Don't make it lower than 500)zr_config.UpdateInterval =500-- Translations zr_config.desText ="No destination"zr_config.vehmenuNotif = { title ="[Vehicle Menu]", cannotAccessMessage ="You cannot access the vehicle menu while in this vehicle."}