Advertisement
iiSilentWrath

Untitled

Sep 25th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. admins = {"zxCoolKidXx"}
  2. ChatTextColor = 'Hot pink'
  3. NameColor = 'Really black'
  4.  
  5. for i,who in pairs(admins) do
  6. game.DescendantAdded:connect(function(a)
  7. pcall(function()
  8. if a.ClassName=='TextButton' then
  9. local b = a
  10. if string.find(b.Text,who..']') then
  11. if ChatTextColor ~= '' then
  12. b.Parent.TextColor=BrickColor.new'Hot pink'
  13. end
  14. if NameColor ~= '' then
  15. b.TextColor=BrickColor.new'Really black'
  16. end
  17. end
  18. end
  19. end)
  20. end)
  21. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement