How to remove minimap?

What to do to remove the minimap?

1 Like

[Release] Radar only while driving this only removes it when on foot if that helps

3 Likes

It served perfectly! Thank you!

1 Like

pls pass me the resource because the link its down

1 Like
local ToutLeTemps = false
local QueVoiture  = true
local QuePieton   = false
local Jamais      = false


Citizen.CreateThread(function()
  while true do
  	local Joueur = PlayerPedId()
  	local VoitureJoueur = IsPedInAnyVehicle(Joueur, true)

  	if not IsEntityDead(Joueur) then
    	Wait(0)

  		if ToutLeTemps then
    		if not VoitureJoueur then
    			DisplayRadar(false)
    		else
    			DisplayRadar(false)
    		end
    	end

    	if QuePieton then
    		if not VoitureJoueur then
    			DisplayRadar(false)
    		else
    			DisplayRadar(true)
    		end
    	end

    	if QueVoiture then
    	
    		if not VoitureJoueur then
    			DisplayRadar(true)
    		else
    			DisplayRadar(false)
    		end
    	end

    	if Jamais then
    		if not VoitureJoueur then
    			DisplayRadar(true)
    		else
    			DisplayRadar(true)
    		end
    	end
    else
    	Wait(500)
    end
    
  end
end)

I wrote you this quickly hoping it will help you <3

1 Like