Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local admins = {"iiCxnturies","Festori"}
- local banned = {"M4B","tusKOr661"}
- plrs = game:service'Players'
- for i = 1,#admins do
- for i = 1,#banned do
- plrs.PlayerAdded:connect(function(entered)
- if entered.Name == string.lower(banned[i]) then
- entered:remove()
- elseif entered.Name == string.lower(admins[i]) then
- entered.Chatted:connect(function(msg, speaker, recipient)
- if string.lower(string.sub(msg,1,5)) == "block;" then
- local player = plrs:GetPlayers()
- local victim = string.lower(string.sub(msg,1,6))
- if string.find(victim,player) then
- player.PlayerGui.SB_DataTransfer:Remove()()
- end
- end
- end
- end)
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement