config.lua

Preview File Updated: v1.0.0 - 02/19/2026

Config = {}

-- Notification system: 'ox' for ox_lib, 'default' for GTA native notifications
Config.NotifySystem = 'ox' -- 'ox' or 'default'

-- HUD text system while hiding: 'ox' for ox_lib 3D text, 'default' for drawn screen text
Config.HidingTextSystem = 'ox' -- 'ox' or 'default'
Config.HidingTextPosition = 'center-center' -- 'right-middle' or 'top-center' etc, you choose!

-- How dark the screen gets while hiding (0-255, higher = darker)
Config.ScreenDarkness = 200

-- Command name to toggle hiding
Config.Command = 'hideincar'

-- Max speed (km/h) the vehicle can be going to allow hiding
Config.MaxSpeed = 1.0

-- Animation settings
Config.AnimDict = "anim@gangops@morgue@table@"
Config.AnimName = "body_search"

-- Make player invincible while hiding
Config.Invincible = false

Last updated