Autosta ampuminen firstpersonis By "KappEッ"

Joonab

Käyttäjä
Vanhempi jäsen
27 Joulukuu 2019
33
1
8
Lua:
Citizen.CreateThread(function()

    while true do

        Citizen.Wait(1)

        local ped = PlayerPedId()

        if IsPedDoingDriveby(ped) then

            SetFollowVehicleCamViewMode(4)

        else

            SetFollowVehicleCamViewMode(1)

        end

    end
    
end)