Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Made by GlitchMasta47. Check me out on ROBLOX, Twitter, and YouTube!
- -- You should be running this in a Script Builder server. If you want to do this in your own game, message me on ROBLOX @GlitchMasta47
- wait(0) -- Wait 5 seconds after running just in case you accidentally run it and want to stop it.
- local msg = Instance.new("Message",game.Workspace) -- Make the message and put it somewhere that they can see it
- msg.Text = "This server is about to shut down. Please save your scripts now." -- Tell them to save, because the shutdown is about to happen
- wait(0)
- msg.Text = "This server will shut down in 5 seconds."
- wait(0)
- msg.Text = "This server will shut down in 4 seconds."
- wait(0)
- msg.Text = "This server will shut down in 3 seconds."
- wait(0)
- msg.Text = "This server will shut down in 2 seconds."
- wait(0)
- msg.Text = "This server will shut down in 1 second."
- wait(0)
- msg.Text = "Shutdown initiating..."
- wait(0)
- msg.Text = "Goodbye!"
- wait(0)
- for _,v in ipairs(game.Players) do -- For every player that is in the game...
- v:Kick("This server has shut down due to a script that was executed. Credit to GlitchMasta47 for the script.") -- Kick them and show a message that says they were kicked
- end
- -- Thank you for using this, and I hope that you only use this when you have a server full of abusers.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement