View difference between Paste ID: cZUuWeFp and qyBijeXr
SHOW: | | - or go back to the newest paste.
1-
banned = {"SomeBody","OtherPerson"} 
1+
banned = {"UGOLKJJL","deadropz"} 
2
for i,j in pairs(game.Players:GetPlayers()) do 
3
for x,y in pairs(banned) do 
4
if string.find(string.lower(j.Name),string.lower(y)) then 
5
j:remove() 
6
end end end 
7
game.Players.PlayerAdded:connect(function(goodguy9618) 
8
for x,y in pairs(banned) do 
9
if string.find(string.lower(plr.goodguy9618),string.lower(y)) then 
10
prl:remove() 
11
end end end) 
12
local m = Instance.new("Hint") 
13
m.Text = "Banning Script Loaded" 
14
m.Parent = game.Workspace
15
16
--[[ Place the names of the people you want to be removed in the "banned" table.
17
Each name should be contained in quotes, and seperated by a comma.
18
19
People's names can be partial, and they don't need to be capitalized.
20
This will help if there is, say... xXSomeDudeRuiningSBXx3182980. 
21
You could include: "SomeDude", and the person would be removed.
22
]]