of     1   

RoQuick
#184130324Monday, February 22, 2016 5:30 AM GMT

how would I kick a player off a game like game.Players.PlayerAdded:connect(function(p) --kick end)
Aethex
#184130502Monday, February 22, 2016 5:34 AM GMT

use the :Kick() method on their player object: game.Players.PlayerAdded:connect(function(plr) if plr.UserId ~= game.CreatorId then -- checks if player isn't game owner plr:Kick(); -- kicks all players who aren't game owner end end

    of     1