GetVehicleWheelieState
Docslocal retval = GetVehicleWheelieState(vehicle)Description
List of known states:
1: Not wheeling.
65: Vehicle is ready to do wheelie (burnouting).
129: Vehicle is doing wheelie.
Parameters
| Name | Type | Description |
|---|---|---|
vehicle | Vehicle | Vehicle |
Quick Snippet: Get Vehiclevehicle
vehicleUse this to get the current vehicle handle for this native.
-- Get the vehicle the player is currently in
local ped = PlayerPedId()
local vehicle = GetVehiclePedIsIn(ped, false)
if vehicle ~= 0 then
print("Vehicle handle: " .. vehicle)
print("Model: " .. GetEntityModel(vehicle))
else
print("Player is not in a vehicle")
endVehicle Models

adder
alpha
blade
ardent
asea
cogcabrio
baller
blistaReturns
intReturns an integer value.
Examples
Official
Citizen.CreateThread(function()
while true do
Wait(1)
local veh = GetVehiclePedIsUsing(PlayerPedId())
if veh ~= 0 then
local wheelieState = GetVehicleWheelieState(veh)
if wheelieState == 1 then
print("Nothing")
elseif wheelieState == 65 then
print("Ready to wheelie!")
elseif wheelieState == 129 then
print("Doing wheelie!")
end
end
end
end)