Hi, I added tags to the chat using this code:
local textfortag = tool
local colorfortag = titleColors[tool]
local tags = {
{
TagText = textfortag, -- Tag
TagColor = colorfortag -- VIP Color
}
}
speaker:SetExtraData("Tags",tags)
end
It works for setting the tags, but I’m using it for an in-game tags shop, so I also want players to be able to unequip the tags. But here comes the errors:
Using “” (an empty string) just makes a new tag with [] (for example [][Boele009]), and using nil it will change to [???].
So: How do I let the tags disappear? Thank you in advance!