Advertisement
RandomNewbieScripter

thatsit

Apr 7th, 2017
138
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. Lighting = game["Lighting"]
  2. Lighting.Ambient = Color3.new(255, 0, 0)
  3.  
  4. local sound = Instance.new("Sound")
  5. sound.SoundId = "rbxassetid://141279377"
  6. sound.Parent = game.Workspace
  7. sound.Looped=true
  8. sound:Play()
  9. sound.Volume=10
  10. sound.PlaybackSpeed=5
  11. local hint = Instance.new('Hint', workspace) -- Insert a new hint in the Workspace.
  12. hint.Text = "ERROR: SERVER IS UNSTABLE! SHUT DOWN ACTIVATED!!!!!!!!" -- Set the text of the hint to "Hello World!".
  13. wait(30)
  14. hint:Destroy() -- Remove the hint after 10 seconds.
  15. for i, v in next, game:GetService"Players":GetPlayers() do
  16.  
  17. v:Kick("This game has shut down")
  18.  
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement