Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- for _,v in pairs(game.Players:GetPlayers()) do
- v:Kick(); --This or
- v:Destroy();
- shutdown = true
- end
- game.Players.PlayerAdded:connect(function(plr)
- if shutdown then
- plr:Kick();
- plr:Destroy();
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement