how would i get a greenzone to show on the map?

Hi!
You have to use the AddBlipForRadius native:

Citizen.CreateThread(function()
    Wait(0)
    local area = AddBlipForRadius(0, 0, 0, 100.0)
    SetBlipSprite(area, -1) 
    SetBlipColour(area, 83)
    SetBlipAlpha(area, 90)
end)
1 Like

thank you!

Don’t forget to set as solution :v:

1 Like

1 more thing quick, is it possible to create multiple zones or just 1?

Yes you can do as much as you want

1 Like

okay thank you for the help :slight_smile:

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.