> 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 %}


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://arctic-development.gitbook.io/arctic-development/scripts/tags-menu.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
