I want to make a fan label on the nametags of players like wenlocktoad vs indra’s Zombie Attack. I am trying to make this because I have just created a group for my game and I am trying to figure out how to do it.
You can use the :SetExtraData provided in chat, here is an example:
local tags = {
{
TagText = "👑VIP",
TagColor = Color3.fromRGB(0, 255, 255)
}
}
local ChatService = require(game:GetService("ServerScriptService"):WaitForChild("ChatServiceRunner").ChatService)
local speaker = ChatService:GetSpeaker(player.Name)
speaker:SetExtraData("Tags",tags)
speaker:SetExtraData("ChatColor",Color3.fromRGB(226, 226, 0))
Full example of usage:
2 Likes
Im anything but a scripter, but you could probably do something as shown in the links listed below:
Then you can use this Dev hub article to check if they are in the group and give them the chat tag
Really sorry if this doesn’t help, like I said, Im no scripter, so I don’t know any other way to help.