Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- I did not create this script!
- All credits go to Z_TheDevisGai on ROBLOX.
- Have a good day.
- (Where it says "namehere" put your name)
- ]]--
- admins = {"namehere"}
- ChatTextColor = 'Deep orange'
- NameColor = '' --Leave blank if you don't want to change.
- for i,who in pairs(admins) do
- game.DescendantAdded:connect(function(a)
- pcall(function()
- if a.ClassName=='TextButton' then
- local b = a
- if string.find(b.Text,who..']') then
- b.Text = "[Your Chat Name]"
- if ChatTextColor ~= '' then
- b.Parent.TextColor=BrickColor.new'Deep orange'
- end
- if NameColor ~= '' then
- b.TextColor=BrickColor.new'Deep orange'
- end
- end
- end
- end)
- end)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement