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!