Advertisement
Guest User

HOW TO CHANGE YOUR CHAT COLOR AND NAME COLOR WITH SCRIPTS! R

a guest
Apr 23rd, 2019
4,478
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. --lets start! Follow me or copy the script in the pastebin below
  2.  
  3. admins = {"DuhEpicSpiderman","YourNameHere"} --add your and your mates usernames
  4. ChatTextColor = "Really red" --change to your chatcolor
  5. NameColor = "Really blue" --change to your name color (Can be the same as chatcolor)
  6.  
  7. for i,who in pairs(admins) do
  8. game.DescendantAdded:Connect(function(a)
  9. pcall(function()
  10. if a.ClassName == "TextButton" then
  11. local b = a
  12. if string.find(b.Text,who.."]") then
  13. b.Parent.TextColor = BrickColor.new("Really red") --IMPORTANT! make sure this is your CHATCOLOR
  14. end
  15. if NameColor == "Really blue" then
  16. b.TextColor = BrickColor.new("Really blue")--IMPORTANT! make sure this is the NAMECOLOR
  17. end
  18. end
  19. end)
  20. end)
  21. end
  22.  
  23. --and we are 100% done! lets test it out!
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement