Name Tag Icon (Group)

Hello developers!

Perhaps many of you were looking for tags with icons for your game. I did something similar and decided to share this model with you!

All changes to icons and tags occur in the script. If you need to change an icon, you just need to have its ID

Here’s what it looks like:
Screenshot_913

The script itself looks like this:

When installing the model, the folder will contain files with the name where to unpack them!

Link to the model: NameTagIconV1.0 - Roblox

16 Likes

is it possible to make it only apply to players instead of setting it to get a group’s ranks automatically?

Sorry I didn’t understand your question.

He means is it possible to set it to a specific player not every player inside that group rank.

No, unfortunately, I have not provided such an option yet. You can try to do it yourself or wait a bit until I release the second version of this model

Does this work in r15 and r6??

It does ㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤㅤ

You could probably do:

if player.Name == "NAME_HERE" then
     
     textlabel1.Text = "rank here"
     textlabel1.TextColor3 = Color3.new(0,0,0)
     textlabel2.Text = "rank here"
     textlabel2.TextColor3 = Color3.new(0,0,0)
     imagelabel.image = " "

end

1 Like

I suggest using this other way:


local whitelisted = {} -- enter the user ids

if table.find(whitelisted, player.UserId) then
     
     textlabel1.Text = "rank here"
     textlabel1.TextColor3 = Color3.new(0,0,0)
     textlabel2.Text = "rank here"
     textlabel2.TextColor3 = Color3.new(0,0,0)
     imagelabel.image = " "

end

because if they change their usernames it won’t work anymore

3 Likes

It does? Its not working with r15 for me.

Ah yes. That is a good point. Thanks for pointing that out! :+1:

1 Like

Yes it should work for R6 and R15

Hmm, I tryed r6 and r15 and they don’t work, I have everything were it needs to be and put the group id in and stuff

Strangely, everything works for me. Can you show the output?

This post is extremely helpful! The only issue is I can’t find the images you use since Roblox says “Error code 404 Page not found” when I try to find the used image, but it still works.

1 Like