NTManager [V.0.1]

NTManager [V0.1]

Get it here! | GitHub


NTManager [NameTag Manager] is an open source tool that was made aiming to be simple but powerful to use and easy to modify and customize as much you want to.

Create nametags for your game within a single line of code, easy to use, easy to custom and easy to manage!


Arguments explanation.

NTManager.SetUp(PlayerInstance, DisplayName, GroupId) -- Instance, Bool, Number

Examples on how to use it.

  • Insert the NTManager Module in your game.
  • Create a script in your game and insert one of theses examples inside:
Basic Usage (Only the PlayerName)
local NTManager = require(PATH.TO.NTMANAGER)
game.Players.PlayerAdded:Connect(function(plr)
       NTManager.SetUp(plr)
end)

Result

Basic Usage (Only the DisplayName)
local NTManager = require(PATH.TO.NTMANAGER)
game.Players.PlayerAdded:Connect(function(plr)
      NTManager.SetUp(plr, true) 
end)

image

Basic Usage (PlayerName + Rank)
local NTManager = require(PATH.TO.NTMANAGER)
game.Players.PlayerAdded:Connect(function(plr)
       NTManager.SetUp(plr, false, 15110989) 
end)

image


Modifying the Ranks Name

Modifying NTManager is pretty easy and simple, in case if you want to modify the entire Nametag design, just grab the Template inside it, however if you want to change the Ranks Text and colors then you need to open the NTManager and modify this

image

  • Nametag Authorisation are specific players nametags and are always turned on (unless if you dont put any id inside the table.
Specific Players Nametag

image

  • Nametag Ranks are your group tags, you’ll need to create it manually as you please, pretty easy to create and modify.

Text is what the tag will be named and the color is the tag color, easy peazy to modify.


New things may come in the near future.

[DO NOT SELL NOR CLAIM THIS AS YOURS]
If you have any question or feedback, please tell me, i’d love to hear what you have to say about this.

5 Likes