Advertisement
Ukendo

Chat name changer

Apr 4th, 2018
298
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.70 KB | None | 0 0
  1. --[[
  2.     I did not create this script!
  3.     All credits go to Z_TheDevisGai on ROBLOX.
  4.     Have a good day.
  5.     (Where it says "namehere" put your name)
  6. ]]--
  7.  
  8. admins = {"namehere"}
  9. ChatTextColor = 'Deep orange'
  10. NameColor = '' --Leave blank if you don't want to change.
  11.  
  12. for i,who in pairs(admins) do
  13.     game.DescendantAdded:connect(function(a)
  14.         pcall(function()
  15.             if a.ClassName=='TextButton' then
  16.                 local b = a
  17.                 if string.find(b.Text,who..']') then
  18.                     b.Text = "[Your Chat Name]"
  19.                     if ChatTextColor ~= '' then
  20.                         b.Parent.TextColor=BrickColor.new'Deep orange'
  21.                     end
  22.                     if NameColor ~= '' then
  23.                         b.TextColor=BrickColor.new'Deep orange'
  24.                     end
  25.                 end
  26.             end
  27.         end)
  28.     end)
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement