#[QB] First person in car not exploitable script
16 messages · Page 1 of 1 (latest)
I have a ultra wide monitor
And the car fov is a f8 command

what is the command?
"profile_fpsFieldOfView" "103"
That didn't work at all, in F8
Oh nvm

CreateThread(function()
local savedViewCam
local resetView = false
local faceProps = {}
while true do
Wait(0)
if cache.vehicle then
if not resetView then
savedViewCam = GetFollowVehicleCamViewMode()
end
if cache.weapon then
if IsControlPressed(0, 25) then
SetFollowVehicleCamViewMode(4)
if not resetView then
faceProps[1] = GetPedPropIndex(cache.ped, 1)
faceProps[2] = GetPedPropTextureIndex(cache.ped, 1)
ClearPedProp(cache.ped, 1)
end
resetView = true
if not IsFirstPersonAimCamActive() then
DisableAimCamThisUpdate()
end
elseif resetView then
SetFollowVehicleCamViewMode(savedViewCam)
if faceProps then
SetPedPropIndex(cache.ped, 1, faceProps[1], faceProps[2], true)
faceProps = {}
end
resetView = false
end
end
elseif resetView then
resetView = false
if faceProps then
SetPedPropIndex(cache.ped, 1, faceProps[1], faceProps[2], true)
faceProps = {}
end
end
end
end)