Free FiveM - Toggle Blips

Hey guys,

Here is a small script for your server where you can turn the blips on & off.

Saw some people are charging you guys for this. Not nice. :wink:

qb-core and qb-radialmenu is needed but you can easily modify.

You need add the required codes to qb-radialmenu.
Can help if needed.
Also added an example for qb-radialmenu integration on github…

Preview

Github Link

|-------------------------------------|----------------------------|
| Code is accessible | Yes |
| Subscription-based | No |
| Lines (approximately) | ? - 4 files |
| Requirements | qb-core, qb-radialmenu |
| Support | Yes |

1 Like

Hi what must i add in radialmenu

Added an example on my github. Thanks.

If you are gonna add it to your main menu in qb-radialmenu then you should change number 3 depends on how you set up your radial menu.

[3] = {
id = ‘allblips’,
title = ‘Blips’,
icon = ‘box’,
items = {
{
id = ‘toggle-market-blips’,
title = ‘Markets :white_check_mark:’,
icon = ‘bag-shopping’,
type = ‘client’,
event = ‘mb-toggle-blips:client:ToggleMarkets’,
shouldClose = false
}, {
id = ‘toggle-garage-blips’,
title = ‘Garages :white_check_mark:’,
icon = ‘car’,
type = ‘client’,
event = ‘mb-toggle-blips:client:ToggleGarages’,
shouldClose = false
}, {
id = ‘toggle-bank-blips’,
title = ‘Banks :white_check_mark:’,
icon = ‘list’,
type = ‘client’,
event = ‘mb-toggle-blips:client:ToggleBanks’,
shouldClose = false
}, {
id = ‘toggle-shop-blips’,
title = ‘Shops :white_check_mark:’,
icon = ‘bag-shopping’,
type = ‘client’,
event = ‘mb-toggle-blips:client:ToggleShops’,
shouldClose = false
}, {
id = ‘toggle-mechanic-blips’,
title = ‘Mechanics :white_check_mark:’,
icon = ‘wrench’,
type = ‘client’,
event = ‘mb-toggle-blips:client:ToggleMechanics’,
shouldClose = false
}, {
id = ‘toggle-clothing-blips’,
title = ‘Clothings :white_check_mark:’,
icon = ‘shirt’,
type = ‘client’,
event = ‘mb-toggle-blips:client:ToggleClothings’,
shouldClose = false
},
},
},

Amazing work! :heart:

1 Like

Is there any way to make it so the blips are enabled by default and player’s have to turn them off?

Nevermind! I was being dumb and i got this going myself!

Yes we can do that. Lemme know if you need help.