Vehicle Lift
Raise vehicles on a hydraulic lift for inspection and work. Uses realistic in-game props with smooth LERP-based animation.
Features
- Smooth hydraulic raise/lower animation
- Vehicle freezing during operation
- Decorative pole props (optional)
- Configurable height range, speed, and vehicle offset
- Multiple lift locations per mechanic
- Interaction: E key or ox_target / qb-target
Configuration
| Option | Default | Description |
|---|---|---|
platformModel | prop_spray_jackframe | Lift platform prop |
poleModel | prop_spray_jackleg | Decorative pole props |
speed | 0.015 | Movement speed per frame |
interactionRadius | 3.0 | Interaction prompt distance |
interactionType | interaction | 'interaction' or 'target' |
usePoles | true | Spawn decorative pole props |
minHeight | — | Lowest position (Z) ground level |
maxHeight | — | Highest position (Z) raised |
Per-Mechanic Setup
Each mechanic can have one or more lifts configured:
lua
lift = {
enabled = true,
coords = vector3(-208.96, -1303.74, 30.15),
heading = 268.43,
minHeight = 30.1,
maxHeight = 32.5,
speed = 0.015,
vehicleOffset = vector3(0.0, 0.0, 0.7),
usePoles = true,
interactionType = 'interaction',
interactionRadius = 3.0,
}
