# 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="https://1417723968-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FrRh5ewdSY4npjj2afCrn%2Fuploads%2FG7Ppyqch4zt8DljqHQgy%2Fimage.png?alt=media&#x26;token=8f310974-d6cb-4b38-9f82-09a8efba2c27" alt=""><figcaption></figcaption></figure>

1. Custom Notifications

***

<figure><img src="https://1417723968-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FrRh5ewdSY4npjj2afCrn%2Fuploads%2FcjHtQH2wOzZHLKnlKate%2FPreview.png?alt=media&#x26;token=5ffabc92-3a40-471e-9e58-daa4e56f7c4b" alt=""><figcaption></figcaption></figure>

<figure><img src="https://1417723968-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FrRh5ewdSY4npjj2afCrn%2Fuploads%2FTv1D0e4l6eBhu7fCbw1X%2F2.png?alt=media&#x26;token=e0df651b-d114-4957-8cc1-6b600029ba6e" alt=""><figcaption><p>Head-Tags Preview</p></figcaption></figure>

<figure><img src="https://1417723968-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FrRh5ewdSY4npjj2afCrn%2Fuploads%2F24YwevBDVT3n4ZNJLOEE%2F3.png?alt=media&#x26;token=97492df5-18e4-4661-8ab9-4aac93dc0285" alt=""><figcaption><p>Gang-Tags Preview</p></figcaption></figure>

<figure><img src="https://1417723968-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FrRh5ewdSY4npjj2afCrn%2Fuploads%2FyjZHKZBdDtnN5IXNoEAI%2F4.png?alt=media&#x26;token=6a6d8dd5-4942-4177-9b1a-c0a6ba2ea499" alt=""><figcaption><p>Settings Menu Preview</p></figcaption></figure>

<figure><img src="https://1417723968-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FrRh5ewdSY4npjj2afCrn%2Fuploads%2FEPylwbLmPEHAGNVmxAtH%2F5.png?alt=media&#x26;token=b0cabf4d-6876-49b4-920d-052dd4b98142" alt=""><figcaption><p>Temp-Tags Menu Preview</p></figcaption></figure>

<figure><img src="https://1417723968-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FrRh5ewdSY4npjj2afCrn%2Fuploads%2FLL9PObeYoNju04rC9zJY%2F6.png?alt=media&#x26;token=33a8ff17-df0b-41da-867b-c8ff5f6bc160" alt=""><figcaption><p>Create Tags Menu Preview</p></figcaption></figure>

<figure><img src="https://1417723968-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FrRh5ewdSY4npjj2afCrn%2Fuploads%2Fy71VtTGOb1dpO5k8AGTw%2FScreenshot%202025-12-14%20035123.png?alt=media&#x26;token=f82faaca-1c6b-425e-8881-08550bbf34b8" alt=""><figcaption><p>Head-Tag Preview</p></figcaption></figure>

<figure><img src="https://1417723968-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FrRh5ewdSY4npjj2afCrn%2Fuploads%2FXbEuEWOLYMPXxAApbqja%2FScreenshot%202025-12-14%20040036.png?alt=media&#x26;token=329b2940-efdb-4e6a-9aad-6f1b4c128133" alt=""><figcaption><p>Gang-Tag Preview</p></figcaption></figure>

<figure><img src="https://1417723968-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FrRh5ewdSY4npjj2afCrn%2Fuploads%2FfSRZRNCDyxXmkJ8Hz9Lw%2FScreenshot%202025-12-14%20040130.png?alt=media&#x26;token=81f1c9f9-220e-49c2-bf4e-cb45263b5592" 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 %}
