This is pretty much discontinued and to be honest is pretty bad. Wouldn't recommend this over making your own, however if you can't do that you should use this module.
EasyNick is an easy to set up modular nametag system, it takes only two lines for your nametags to be set.
Supports optional non case-sensitive AFK commands, as well as optional Display Name support.
EasyNick currently supports 5 types of nametags.
You can change the font & such in the “Nametag” Billboard GUI parented to the ModuleScript.
Types
Types
Classic Nametag: A nametag showing your username, display name (optional), group rank, and staff badge if you’re above the minimum staff rank, as well as a Roblox Premium badge. - module.Create(DefaultColor : Color3, MinimumStaffRank : number, GroupId : number, AFKCommandsEnabled : boolean, DisplayNameSupported : boolean)
NPC Nametag: Assign nametags to your NPCs! Supporting Title, Text below title & a badge. - module.CreateNPCNametag(NPC : Model, Title : string, Text2 : string, Badge :string, TitleColor : Color3)
TeamTag: This is basically classic nametag, but instead of your rank it shows your team. - module.Create2(DisplayNameSupported : boolean, AFKCommandsEnabled : boolean)
PlayerTag - A non unique nametag showcasing a title for every player, and badge. - module.Create3(DefaultColor : Color3, Title : string, Badge : string, DisplayNameSupported : boolean, OwnerOnlyPerk : boolean)
UserOnlyNametag: Create a nametag exclusively to player with the given UserId. - module.UserOnlyNametag(userId : number, Title : string, Badge : string, TitleColor : Color3, DisplayNameSupported : boolean)
Showcase
Showcase
Type1: Groups
Can’t be spammed. ^
Type2: NPC
Type3: Teams
Type4: Custom Text
Type5: User Exclusive
Example Code
EasyNick Types Usage
Create | CreateNPCNametag | Create2 | Create3 |
---|---|---|---|
DefaultColor : Color3 | NPC [Model/Head] | AFKCommandsEnabled : boolean | DefaultColor : Color3 |
minimumstaffRank : number | Title : string | DisplayNameSupported : boolean | Title : string |
groupId : number | Text Below Title : string | Undefined | Badge : string |
AFKCommandsEnabled : boolean | Badge : string | Undefined | DisplayNameSupported : boolean |
DisplayNameSupported : boolean | TitleColor : Color3 | Undefined | OwnerOnlyPerks : boolean |
Bonus: UserOnlyNametag
Example Code
local EasyNick = require(path.to.module)
EasyNick.Create(Color3.new(255,255,255), 6, 123, true, true)
local EasyNick = require(path.to.module)
EasyNick.UserOnlyNametag(1518967977, "Iteq", "👾", Color3.new(0.290196, 0.145098, 0.435294), true)