of     1   

kcitsretsamekul
#139992655Friday, July 11, 2014 4:17 PM GMT

timeuntilkickout = 60 game.Players.PlayerAdded:connect(function(p) wait(timeuntilkickout) p:Kick() end) Can someone help me make this so it doesn't kick everybody in the server at once. Also so I can put the people who I never want to get kicked and so it doesn't kick them out once they answer my poll question which is an GUI. Thanks for Reading sorry I know it is a lot to ask. But I am still learning.
Dispassion
#139992874Friday, July 11, 2014 4:20 PM GMT

timeuntilkickout = 60 local players = {} game.Players.PlayerAdded:connect(function(p) if playerhasansweredpoll then table.insert(players, p) end wait(timeuntilkickout) for i, v in pairs(players) do if v == p then return nil end end p:Kick() end)
kcitsretsamekul
#139993134Friday, July 11, 2014 4:23 PM GMT

Ok thanks! But where should I change the name of the Gui in this script. I see the part where it says if playerhasansweredpoll but im not sure.
Olvz
#139993568Friday, July 11, 2014 4:28 PM GMT

Game only script.. SI doesn't allow.
kcitsretsamekul
#139993683Friday, July 11, 2014 4:29 PM GMT

What do you mean @above
Olvz
#139993755Friday, July 11, 2014 4:30 PM GMT

It didn't work because you may have added a certain admin script... Anyway's he fixed it.
kcitsretsamekul
#140003800Friday, July 11, 2014 6:15 PM GMT

Is it going to cancel the kicking process when they answer the question? Thats why I was asking where would I put the name of the Gui. I see the 60 Second Kicking process is fix which is good!
kcitsretsamekul
#140005552Friday, July 11, 2014 6:33 PM GMT

Bump
Olvz
#140008744Friday, July 11, 2014 7:07 PM GMT

Bump
kcitsretsamekul
#140033801Friday, July 11, 2014 11:19 PM GMT

Thanks for the Bump^
Olvz
#140104481Saturday, July 12, 2014 5:31 PM GMT

What bump?

    of     1