Advertisement
Marcsosa

Untitled

Mar 9th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. OwnerName = 'Magermash' -- put your name here.
  2.  
  3. game.Players.PlayerAdded:connect(function(p)
  4. local tags = Instance.new('Folder', p)
  5. tags.Name = 'Tags'
  6.  
  7. if p.Name == OwnerName then
  8. local newTag = Instance.new('IntValue', tags)
  9. newTag.Name = 'Owner'
  10. local ChatColor = Instance.new('Color3Value', newTag)
  11. ChatColor.Name = 'ChatColor'
  12. ChatColor.Value = Color3.new(1, 1, 0)
  13. local TagColor = Instance.new('Color3Value', newTag)
  14. TagColor.Name = 'TagColor'
  15. TagColor.Value = Color3.new(0, 1, 1)
  16. end
  17. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement