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)