Advertisement
EmeraldIT

Untitled

Aug 7th, 2019
263
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.85 KB | None | 0 0
  1. admins = {"PhoenixClockworks","ClinksYT"}
  2. ChatTextColor = BrickColor.new'Neon orange'
  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. spawn(function()
  12. while true do
  13. if ChatTextColor ~='' then
  14. b.Parent.TextColor=ChatTextColor
  15. end
  16. if NameColor ~= '' then
  17. b.TextColor=BrickColor.new(NameColor)
  18. end
  19. wait()
  20. end
  21. end)
  22. end
  23. end
  24. end)
  25. end)
  26. end
  27.  
  28. va = 255
  29. vaa = 255
  30. vaaa=100
  31.  
  32. while true do
  33.  
  34. for i = 1, 100 do
  35. ChatTextColor = BrickColor.new(va, vaa, vaaa)
  36. vaa = vaa - 1
  37. vaaa = vaaa - 0.5
  38. wait()
  39. end
  40.  
  41. wait(2)
  42.  
  43. for i = 1, 100 do
  44. ChatTextColor = BrickColor.new(va, vaa, vaaa)
  45. vaa = vaa + 1
  46. vaaa = vaaa + 0.5
  47. wait()
  48. end
  49.  
  50. wait(2)
  51. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement