> For the complete documentation index, see [llms.txt](https://arctic-development.gitbook.io/arctic-development/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://arctic-development.gitbook.io/arctic-development/scripts/tags-menu.md).

# Tags Menu

The Tags Menu **Script** for FiveM is the one-stop solution for Headtag/Gangtag System in game, this script works seamlessly with any framework and uses Discord Role IDS!

***

<figure><img src="/files/7zh66Nef7GwSoeKKYldi" alt=""><figcaption></figcaption></figure>

1. Custom Notifications

***

<figure><img src="/files/SpMscVNMZqsjkgvXax7q" alt=""><figcaption></figcaption></figure>

<figure><img src="/files/BuqquXLtxGoE3xqhgH25" alt=""><figcaption><p>Head-Tags Preview</p></figcaption></figure>

<figure><img src="/files/7SAXTDQdEpam8n60KpDS" alt=""><figcaption><p>Gang-Tags Preview</p></figcaption></figure>

<figure><img src="/files/CUgZMvnfyf3fEO7tl0qS" alt=""><figcaption><p>Settings Menu Preview</p></figcaption></figure>

<figure><img src="/files/C1D5vd7kinKlRRsBjEPp" alt=""><figcaption><p>Temp-Tags Menu Preview</p></figcaption></figure>

<figure><img src="/files/ATtoHA9br1wkz4Fhi6zK" alt=""><figcaption><p>Create Tags Menu Preview</p></figcaption></figure>

<figure><img src="/files/GwiMacRtesUDTYMslQA6" alt=""><figcaption><p>Head-Tag Preview</p></figcaption></figure>

<figure><img src="/files/WjXbHk6ZlqI54zmwDSMo" alt=""><figcaption><p>Gang-Tag Preview</p></figcaption></figure>

<figure><img src="/files/0DQHvsHRZIjHk6Nr5WsN" alt=""><figcaption><p>Head &#x26; Gang Tag Preview</p></figcaption></figure>

***

```lua
Config = {}
-----------------------------------------------------------------------------------------------------
-- Developer Settings
-----------------------------------------------------------------------------------------------------
Config.Debug = false -- Enable debug prints to console
Config.DebugCommandRoleID = 0-- Users with this Discord Role ID can use debug commands
-----------------------------------------------------------------------------------------------------
-- Notification Settings
-----------------------------------------------------------------------------------------------------
Config.NotifyType = 'Ox_lib' -- DONT TOUCH THIS
Config.notifyTime = 10000 -- Default notification time in milliseconds
-----------------------------------------------------------------------------------------------------
-- HeadTag Settings
-----------------------------------------------------------------------------------------------------
Config.UseGiveAllHeadtags = false-- Give all headtags to users with a specific Discord Role ID
Config.GiveAllHeadtagsDiscordRoleID = 0-- Give all headtags to this Discord Role ID
Config.headtags = {
	{ RoleID = 0, TagText = "~g~Member ~w~"},  
	{ RoleID = 0, TagText = "~g~Owner ~w~"},  
	{ RoleID = 0, TagText = "~b~Management ~w~"},  
}
-----------------------------------------------------------------------------------------------------
-- GangTag Settings
-----------------------------------------------------------------------------------------------------
Config.UseGiveAllGangtags = false-- Give all gangtags to users with a specific Discord Role ID
Config.GiveAllGangtagsDiscordRoleID = 0-- Give all gangtags to this Discord Role ID
Config.gangtags = {
	{ RoleID = 0, TagText = "~p~GANGTAG ~w~"},
}
-----------------------------------------------------------------------------------------------------
-- Temp Tags Settings
-----------------------------------------------------------------------------------------------------
Config.UseTempTags = false-- Enable temporary tags that can be set by admins with a command
Config.TempTagDiscordRoleID = 0-- Users with this Discord Role ID can have temporary tags set by admins
Config.TempTagBlacklist = { -- List of blacklisted words that cannot be used in temporary tags
    "BLACKLISTEDWORD1",
    "BLACKLISTEDWORD2",
    "BLACKLISTEDWORD3",
	"BLACKLISTEDWORD4",
	"BLACKLISTEDWORD5",
	"BLACKLISTEDWORD6"
}

return Config
-----------------------------------------------------------------------------------------------------
-- All Colors Use "https://docs.fivem.net/docs/game-references/text-formatting/"
-----------------------------------------------------------------------------------------------------
```

{% hint style="success" %}
Downloads

\[PAID | Open Source] [Official Store Link](https://arcticdevlabs.com/package/script?script=Tags-Menu)
{% endhint %}
