Tags Menu










Last updated
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/"
-----------------------------------------------------------------------------------------------------