Advertisement
Guest User

ROBLOX Chat Tag Script

a guest
Mar 12th, 2020
12,095
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 KB | None | 0 0
  1. game.Players.PlayerAdded:connect(function(plr)
  2. local tags = Instance.new("Folder",plr)
  3. tags.Name = "Tags"
  4. if plr.Name == "deletethisandputplayersname" then --Keep the inverted commas.
  5. local newTag = Instance.new("IntValue",tags)
  6. newTag.Name = "deletethisandputplayerschattag" --Keep the inverted commas.
  7. local chatColor = Instance.new("Color3Value",newTag)
  8. chatColor.Name = "ChatColor"
  9. chatColor.Value = BrickColor.new("New Yeller").Color
  10. local tagColor = Instance.new("Color3Value",newTag)
  11. tagColor.Name = "TagColor"
  12. tagColor.Value = Color3.fromRGB(128, 187, 219)--chat tag color
  13. elseif plr.Name == "deletethisandputplayersname" then --Keep the inverted commas.
  14. local newTag = Instance.new("IntValue",tags)
  15. newTag.Name = "deletethisandputplayerschattag" --Keep the inverted commas.
  16. local chatColor = Instance.new("Color3Value","
  17. local chatColor = Instance.new("Color3Value",newTag)
  18. chatColor.Name = "ChatColor"
  19. chatColor.Value = BrickColor.new("New Yeller").Color
  20. local tagColor = Instance.new("Color3Value",newTag)
  21. tagColor.Name = "TagColor"
  22. tagColor.Value = Color3.fromRGB(159, 243, 233) --chat tag color
  23. end
  24. end)
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement