SebTDZ

Noot Noot

Jul 1st, 2019
301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.50 KB | None | 0 0
  1. pingudecal = "https://www.roblox.com/asset/?id=382332426"
  2. local ScreenGui = Instance.new("ScreenGui",owner.PlayerGui)
  3. ScreenGui.Name = "nooties"
  4. local asd = Instance.new("TextButton",ScreenGui)
  5. asd.BackgroundColor3 = Color3.new(0,0,0)
  6. asd.BorderColor3 = Color3.new(0,0,0)
  7. asd.Name = "nooties"
  8. asd.Position = UDim2.new(1,-150,1,-90)
  9. asd.Size = UDim2.new(0,150,0,45)
  10. asd.Font = "SourceSansBold"
  11. asd.FontSize = "Size32"
  12. asd.Text = "Noot Noot!"
  13. asd.TextColor3 = Color3.new(255,255,255)
  14. asd.MouseButton1Down:connect(function()
  15.     function sound()
  16.         local Music = Instance.new("Sound",workspace)
  17.         Music.Looped = true
  18.         Music.Volume = 10
  19.         Music.SoundId = "https://www.roblox.com/asset/?id=142912516"
  20.         Music:Play()
  21.         Music.Changed:Connect(sound)
  22.     end
  23.     sound()
  24.     wait(12)
  25.     function sky()
  26.         local Sky = Instance.new("Sky",game.Lighting)
  27.         Sky.SkyboxBk = pingudecal
  28.         Sky.SkyboxDn = pingudecal
  29.         Sky.SkyboxFt = pingudecal
  30.         Sky.SkyboxLf = pingudecal
  31.         Sky.SkyboxRt = pingudecal
  32.         Sky.SkyboxUp = pingudecal
  33.         Sky.Changed:Connect(sky)
  34.     end
  35.     sky()
  36.     while true do
  37.         for _,Player in pairs(game.Players:GetPlayers()) do
  38.             Player.Character = nil
  39.         end
  40.        
  41.         local Point1 = Vector3.new(-2500,-10,-2500)
  42.         local Point2 = Vector3.new(2500,2500,2000)
  43.         local Region = Region3.new(Point1,Point2)
  44.         for _,Part in pairs(game.Workspace:FindPartsInRegion3(Region,nil,math.huge)) do
  45.             Part:Remove()
  46.         end
  47.        
  48.         game.Workspace.Terrain:Clear()
  49.        
  50.         wait(0.1)
  51.     end
  52. end)
Advertisement
Add Comment
Please, Sign In to add comment