Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Chat Tag Script Does Not Work Properly?

Asked by 6 years ago

Hello! I have been having problems with this name tag script, it works in roblox studio some of the time but when ever a server is open it does not work at all, is there any problem with this?

game.Players.PlayerAdded:connect(function(player)
    local tags = Instance.new("Folder", player)
    tags.Name = "Tags"
    if player.Name == "opticpenguin32" then
        local newTag = Instance.new("IntValue", tags)
        newTag.Name = "CREATOR"
        local chatColor = Instance.new("Color3Value", newTag)
        chatColor.Name = "ChatColor"
        chatColor.Value = BrickColor.new("Gold").Color
        local tagColor = Instance.new("Color3Value", newTag)
        tagColor.Name = "TagColor"
        tagColor.Value = Color3.fromRGB(255, 255, 255)
        end
  end)






Thanks You!

0
I had also forgotten to add that it sometimes will only work on certain people. Nikkasfied 43 — 6y
0
Is this a custom chat? We'd need to see that script as well. Shawnyg 4330 — 6y
0
Proberly something with FilteringEnabled because the server cant access a player Gui with it Enabled Timmerman73 85 — 6y

Answer this question