CreateThread(function()
local vehicle = GetVehiclePedIsIn(PlayerPedId(), false) -- The plane used in this example is the cuban800
DisableIndividualPlanePropeller(vehicle, 0)
DisableIndividualPlanePropeller(vehicle, 1)
-- We are disabling both propellers so we can start a specific one (since both are automatically started when entering the plane)
Wait(5000) -- We are waiting 5 seconds
EnableIndividualPlanePropeller(vehicle, 1) -- Starting the second propeller (since the index starts at 0)
end)