Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- OwnerName = 'Magermash' -- put your name here.
- game.Players.PlayerAdded:connect(function(p)
- local tags = Instance.new('Folder', p)
- tags.Name = 'Tags'
- if p.Name == OwnerName then
- local newTag = Instance.new('IntValue', tags)
- newTag.Name = 'Owner'
- local ChatColor = Instance.new('Color3Value', newTag)
- ChatColor.Name = 'ChatColor'
- ChatColor.Value = Color3.new(1, 1, 0)
- local TagColor = Instance.new('Color3Value', newTag)
- TagColor.Name = 'TagColor'
- TagColor.Value = Color3.new(0, 1, 1)
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement