View difference between Paste ID: 9Jcq3SCD and LzKfscGv
SHOW: | | - or go back to the newest paste.
1
-- By Dominical -- Regular Script
2
Bypass=true--false if you don't want ANYONE to join, not even you!
3-
Bypassers={"Dominical","cp92","YOUR NAME HERE","FatKidsAreUs"} -- People who can join
3+
Bypassers={"Dominical","cp92","baldeagle22","FatKidsAreUs"} -- People who can join
4
5
game.Players.PlayerAdded:connect(function(plr)
6
	if Bypass==true then
7
	for i,v in pairs(Bypassers) do
8
		if plr.Name~=v then
9
			plr:Kick()
10
		end
11
	end
12
	else
13
		plr:Kick()
14
	end
15
end)