Creating pre-made tags
Location of Tags
The tags are found in a folder named "Tags" found within the main script.

Creating a Tag
We recommend duplicating one of the tags we provide, however make sure you rename the file since that is the name of the tag.
Assignable
This determines whether players use the :addtag me TAG_NAME command to add this tag.
This tag cannot be manually given using commands unless changed to true (but you can with the API).
Customization
TagText
The visible text shown on the tag.
Examples
Below is the basic version, just plain text!
If you wish to just have an icon, set TagText to false.
Below is an example of the custom function, you could put any code here!
TagIcon
The image visible on the tag.
Examples
Below is the basic version, just a string!
If you wish to just have text, set TagIcon to false.
Below is an example of the custom function, you could put any code here!
TagColor
The background color of the tag - refers to a color defined in the Colors folder.
Examples
Below is the basic version, just a string!
Below is an example of the custom function, you could put any code here!
TagFont
Sets the font of the tag text. You can use any font from the Enum.Font list.
Examples
Below is the basic version, just a static font!
Below is an example of the custom function, you could put any code here!
AutoRemove
Creates a timer which will automatically remove the tag from the player after the specified amount of seconds.
Examples
AutoRemove can only be a number or false - it does not support custom functions unfortunately.
OnSpawn
easyNametags v2 does not have any built-in methods for assigning tags (such as entering user IDs or group IDs) - instead you must add code to do so.
We have provided various example pieces of code below, based on what we have commonly been asked about.
Examples
Give tag to people who own a gamepass
Give tag to people who have a minimum rank OR a gamepass
Give tag to minimum group rank
Give tag to specific group ranks
Give tag to specific user IDs
Something not here which you'd like to-do? Send your configuration to ChatGPT and it can easily do it for you!
If your tag makes API calls or anything which could be slow, we recommend caching the result otherwise it may cause issues.
Last updated