This repository has been archived on 2025-12-11. You can view files and clone it, but cannot push or open issues or pull requests.

10 lines
227 B
Lua
Raw Normal View History

2025-03-17 13:54:06 +01:00
Citizen.CreateThread(function()
while true do
Citizen.Wait(1)
if IsPedOnFoot(GetPlayerPed(-1)) then
SetRadarZoom(1100)
elseif IsPedInAnyVehicle(GetPlayerPed(-1), true) then
SetRadarZoom(1100)
end
end
end)