Advertisement
Guest_84210423435

Tags! roblox

Jul 15th, 2019
271
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 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 == "Guest_842104" then
  5. local newTag = Instance.new("IntValue",tags)
  6. newTag.Name = "Anything"
  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.Value = Color3.fromRGB(255,255,255)
  12. end
  13. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement