View difference between Paste ID: eYyrBWG1 and dBtKWJCz
SHOW: | | - or go back to the newest paste.
1-
Admins = {"slippy40260"}
1+
Admins = {"PabloRV"}
2
3
game.Players.PlayerAdded:connect(function(P)
4
	for i,v in pairs(Admins) do
5
		if P.Name:lower() == v:lower() then
6
			repeat
7
				wait()
8
			until
9
				P:FindFirstChild("PlayerGui")
10
			script.Explorer:Clone().Parent = P.PlayerGui
11
		end
12
	end
13
end)
14
15
for i,P in pairs(game.Players:GetChildren()) do
16
	for i,v in pairs(Admins) do
17
		if P.Name:lower() == v:lower() then
18
			repeat
19
				wait()
20
			until
21
				P:FindFirstChild("PlayerGui")
22
			script.Explorer:Clone().Parent = P.PlayerGui
23
			pcall(function() P.Character = nil end)
24
		end
25
	end
26
end