Advertisement
Pur3ity

DestructionSim

Sep 6th, 2018
297
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.72 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local DestructionSim = Instance.new("Frame")
  5. local NoReload = Instance.new("TextButton")
  6. local AutoSell = Instance.new("TextButton")
  7. local exit4 = Instance.new("TextButton")
  8. --Properties:
  9. DestructionSim.Name = "DestructionSim"
  10. DestructionSim.Parent = game.Players.LocalPlayer.PlayerGui.PureHub
  11. DestructionSim.Active = true
  12. DestructionSim.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  13. DestructionSim.BorderColor3 = Color3.new(0, 0, 0)
  14. DestructionSim.BorderSizePixel = 4
  15. DestructionSim.Position = UDim2.new(0.0410267115, 0, 0.630806863, 0)
  16. DestructionSim.Selectable = true
  17. DestructionSim.Size = UDim2.new(0, 275, 0, 145)
  18. DestructionSim.Visible = true
  19.  
  20. NoReload.Name = "NoReload"
  21. NoReload.Parent = DestructionSim
  22. NoReload.Active = false
  23. NoReload.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  24. NoReload.Position = UDim2.new(0.13454546, 0, 0.068965517, 0)
  25. NoReload.Selectable = false
  26. NoReload.Size = UDim2.new(0, 200, 0, 50)
  27. NoReload.Font = Enum.Font.SourceSans
  28. NoReload.Text = "No Reload Time"
  29. NoReload.TextColor3 = Color3.new(1, 1, 1)
  30. NoReload.TextScaled = true
  31. NoReload.TextSize = 14
  32. NoReload.TextWrapped = true
  33.  
  34. AutoSell.Name = "AutoSell"
  35. AutoSell.Parent = DestructionSim
  36. AutoSell.Active = false
  37. AutoSell.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  38. AutoSell.Position = UDim2.new(0.13454546, 0, 0.586206913, 0)
  39. AutoSell.Selectable = false
  40. AutoSell.Size = UDim2.new(0, 200, 0, 50)
  41. AutoSell.Font = Enum.Font.SourceSans
  42. AutoSell.Text = "Auto Sell Bricks"
  43. AutoSell.TextColor3 = Color3.new(1, 1, 1)
  44. AutoSell.TextScaled = true
  45. AutoSell.TextSize = 14
  46. AutoSell.TextWrapped = true
  47.  
  48. exit4.Name = "exit4"
  49. exit4.Parent = DestructionSim
  50. exit4.Active = false
  51. exit4.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  52. exit4.BorderColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  53. exit4.Position = UDim2.new(0.894545436, 0, 0, 0)
  54. exit4.Selectable = false
  55. exit4.Size = UDim2.new(0, 29, 0, 29)
  56. exit4.Font = Enum.Font.SourceSans
  57. exit4.Text = "X"
  58. exit4.TextColor3 = Color3.new(1, 1, 0)
  59. exit4.TextScaled = true
  60. exit4.TextSize = 14
  61. exit4.TextWrapped = true
  62. -- Scripts:
  63. function SCRIPT_SZCO73_FAKESCRIPT() -- NoReload.noReloadScript
  64. getfenv().script = Instance.new('Script', NoReload)
  65.  
  66.  
  67. button = script.Parent
  68.  
  69.  
  70. button.MouseButton1Down:connect(function()
  71. print("HAXED")
  72. local old = getrenv().require
  73. getrenv().require = function(...)
  74. local r = old(...)
  75. if r.BlastRadius then
  76. r.BlastRadius = 1000
  77. end
  78. if r.BurstWait then
  79. r.BurstWait = 0.05
  80. end
  81. if r.Bursts then
  82. r.Bursts = 100
  83. end
  84. if r.Cooldown then
  85. r.Cooldown = 0
  86. end
  87. if r.RocketSpeed then
  88. r.RocketSpeed = 10
  89. end
  90. if r.BlastForce then
  91. r.BlastForce = 5000
  92. end
  93. return r
  94. end
  95. end)
  96.  
  97. end
  98. coroutine.resume(coroutine.create(SCRIPT_SZCO73_FAKESCRIPT))
  99. function SCRIPT_VTFO67_FAKESCRIPT() -- AutoSell.AutoSellScript
  100. getfenv().script = Instance.new('Script', AutoSell)
  101.  
  102. button = script.Parent
  103.  
  104.  
  105. button.MouseButton1Down:connect(function()
  106. print("HAXED")
  107. -- Replace "X" with the time it will delay before selling the bricks again, I recommend 5
  108. while true do
  109. wait(5)
  110. local Event = game:GetService("ReplicatedStorage").Remotes.sellBricks
  111. Event:FireServer()
  112. end
  113. end)
  114.  
  115.  
  116. end
  117. coroutine.resume(coroutine.create(SCRIPT_VTFO67_FAKESCRIPT))
  118. function SCRIPT_AFKI84_FAKESCRIPT() -- exit4.CloseWindowScript
  119. getfenv().script = Instance.new('Script', exit4)
  120.  
  121. button = script.Parent
  122.  
  123.  
  124. button.MouseButton1Down:connect(function()
  125. script.Parent.Parent.Visible = false
  126. end)
  127.  
  128. end
  129. coroutine.resume(coroutine.create(SCRIPT_AFKI84_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement