Mrtomtomon

Untitled

Dec 14th, 2019
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. local ServerScriptService = game:GetService("ServerScriptService")
  2. local ChatService = require(ServerScriptService:WaitForChild("ChatServiceRunner"):WaitForChild("ChatService"))
  3. local Players = game:GetService("Players")
  4.  
  5. local Admins = {'mrtomtomon1872'}
  6.  
  7. ChatService.SpeakerAdded:Connect (function(PlrName)
  8. local Speaker = ChatService:GetSpeaker(PlrName)
  9. for _,v in pairs(Admins) do
  10. if Players[PlrName].Name == v then
  11. Speaker:SetExtraData('Tags', {{TagText = "Manager", TagColor = Color3.fromRGB(255, 255, 255)}})
  12. end
  13. end
  14. end)
Advertisement
Add Comment
Please, Sign In to add comment