Advertisement
ActiniumDevs

[MO5] RemoteExe

Aug 12th, 2015
484
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.34 KB | None | 0 0
  1. local Kick = false
  2. local PlayerToKick = "12gaugenick"
  3.  
  4. if Kick and PlayerToKick ~= ("" or nil) then
  5.     pcall(function()
  6.         game:GetService("Players")[PlayerToKick]:Kick("Shutdown remotely by MO5")
  7.     end)
  8. end
  9.  
  10. local Shutdown = false
  11. if Shutdown == true then
  12.     for _,v in next,game.Players:GetPlayers() do
  13.         v:Kick("Shutdown by GO1")
  14.     end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement