Advertisement
Guest User

Untitled

a guest
Feb 25th, 2020
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. local ChatService = require(script.Parent:WaitForChild("ChatServiceRunner"):WaitForChild("ChatService"))
  2.  
  3.  
  4. local devs = {Authurian = true, Player1 = true}
  5.  
  6.  
  7. game:GetService("Players").PlayerAdded:Connect(function(player)
  8. wait(2)
  9. if devs[player.Name] then
  10. local speaker = ChatService:GetSpeaker(player.Name)
  11. speaker:SetExtraData("Tags", {{TagText = "CREATOR", TagColor = Color3.fromRGB(255,40,50)}, {TagText = "DEV", TagColor = Color3.fromRGB(40,40,40)}})
  12. end
  13. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement