_INVALIDATE_VEHICLE_IDLE_CAM
DocsInvalidateVehicleIdleCam()Description
Resets the vehicle idle camera timer. Calling this in a loop will disable the idle camera.
Vehicle Models

adder
alpha
blade
ardent
asea
cogcabrio
baller
blistaReturns
voidThis native does not return a value.
Examples
Official
Citizen.CreateThread(function()
while true do
InvalidateIdleCam()
InvalidateVehicleIdleCam()
Wait(1000) --The idle camera activates after 30 second so we don't need to call this per frame
end
end)