of     1   

piede
Top 100 Poster
#56720149Friday, October 21, 2011 5:29 AM GMT

while true do if game.Players:FindFirstChild("PlayerName") then game.Players["PlayerName"]:remove() end wait(5) end
grimm343
#56720189Friday, October 21, 2011 5:32 AM GMT

No. :o That's terribly inefficient. Please read my post to your other thread.
babyzander44
#56720300Friday, October 21, 2011 5:41 AM GMT

I would use Grimms, his seems more efficient than mine, but mine was more original because I used pcall. :>
kingmod123
#56721028Friday, October 21, 2011 7:42 AM GMT

local bannedlist = {"NameHere"} function enter(player) for i, v in pairs(bannedlist) do if player.Name == bannedlist[i] then player:remove() end end end game.Players.PlayerAdded:connect(enter)
UttermostExedra
#56721076Friday, October 21, 2011 8:04 AM GMT

@Kingmod You used a generic for loop, but you have put down: 'bannedlist[i]'. Thay wouldn't work, because you never made a numeric for loop with variable 'i'. local banned = {"Troll","Noob"} game.Players.PlayerAdded:connect(function(plr) for i,v in pairs(banned) do if string.lower(plr.Name) == string.lower(v) then plr:remove() end end end)
kingmod123
#56721270Friday, October 21, 2011 8:45 AM GMT

It still works...
Voidacity
#56721278Friday, October 21, 2011 8:46 AM GMT

[ Content Deleted ]
Voidacity
#56721282Friday, October 21, 2011 8:47 AM GMT

[ Content Deleted ]

    of     1