Advertisement
Ihaveashortname

Shit Break In Gui

Feb 16th, 2020
293
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.70 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/eWKgbdix", true))()
  2. local w = library:CreateWindow('Skid Topless')
  3. w:Section('Break-In')
  4.  
  5.  
  6. w:Button("Godmode", function()
  7. game:GetService"RunService".RenderStepped:Connect(function()
  8. wait(6)
  9. game.ReplicatedStorage.RemoteEvents.Energy:FireServer(1000000)
  10. wait(6)
  11. end)
  12. end)
  13.  
  14. w:Button("Semi-God", function()
  15. game:GetService"RunService".RenderStepped:Connect(function()
  16. wait(30)
  17. game.ReplicatedStorage.RemoteEvents.Energy:FireServer(1)
  18. wait(30)
  19. end)
  20. end)
  21.  
  22.  
  23.  
  24.  
  25.  
  26. w:Button("Inf Money", function()
  27. game.ReplicatedStorage.RemoteEvents.BuyItem:FireServer("Cookie", -9999999)
  28. end)
  29.  
  30. w:Button("Drop Tool(backspace)", function()
  31. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  32. if v:IsA("Tool") then
  33. v.CanBeDropped = true
  34. end
  35. end
  36. end)
  37.  
  38. w:Button("Give Gun", function()
  39. game:GetService("ReplicatedStorage").RemoteEvents.GiveTool:FireServer("Gun")
  40. end)
  41.  
  42.  
  43. w:Button("Give Sword", function()
  44. game:GetService("ReplicatedStorage").RemoteEvents.GiveTool:FireServer("Sword")
  45. end)
  46.  
  47. w:Button("Give Bat", function()
  48. game:GetService("ReplicatedStorage").RemoteEvents.GiveTool:FireServer("Bat")
  49. end)
  50.  
  51. w:Button("Give MedKit", function()
  52. game:GetService("ReplicatedStorage").RemoteEvents.GiveTool:FireServer("MedKit")
  53. end)
  54.  
  55. w:Button("Give Cure", function()
  56. game:GetService("ReplicatedStorage").RemoteEvents.GiveTool:FireServer("Cure")
  57. end)
  58.  
  59. w:Button("Give Chips", function()
  60. game:GetService("ReplicatedStorage").RemoteEvents.GiveTool:FireServer("Chips")
  61. end)
  62.  
  63. w:Button("Give Cookie", function()
  64. game:GetService("ReplicatedStorage").RemoteEvents.GiveTool:FireServer("Cookie")
  65. end)
  66.  
  67. w:Button("Give Bloxy Cola", function()
  68. game:GetService("ReplicatedStorage").RemoteEvents.GiveTool:FireServer("Chips")
  69. end)
  70.  
  71. w:Button("Give Pie", function()
  72. game:GetService("ReplicatedStorage").RemoteEvents.GiveTool:FireServer("Pie")
  73. end)
  74.  
  75. w:Button("Give Apple", function()
  76. game:GetService("ReplicatedStorage").RemoteEvents.GiveTool:FireServer("Apple")
  77. end)
  78.  
  79. w:Button("Give Pizza", function()
  80. game:GetService("ReplicatedStorage").RemoteEvents.GiveTool:FireServer("Pizza")
  81. end)
  82.  
  83. w:Button("Give Invisibility", function()
  84. game:GetService("ReplicatedStorage").RemoteEvents.GiveTool:FireServer("TeddyBloxpin")
  85. end)
  86.  
  87. w:Button("Give Pan", function()
  88. game:GetService("ReplicatedStorage").RemoteEvents.GiveTool:FireServer("Pan")
  89. end)
  90.  
  91. w:Button("Give Plank", function()
  92. game:GetService("ReplicatedStorage").RemoteEvents.GiveTool:FireServer("Plank")
  93. end)
  94.  
  95. w:Button("Remove Tools", function()
  96. for i,v in pairs(game:GetService("Players").LocalPlayer.Backpack:GetChildren()) do
  97. if v:IsA("Tool") then
  98. v:Destroy()
  99. end
  100. end
  101. end)
  102.  
  103. w:Button("Heal All", function()
  104. game:GetService("ReplicatedStorage").RemoteEvents.GiveTool:FireServer("Cure")
  105. wait(1)
  106. if not game:GetService("Players").LocalPlayer.Character:FindFirstChild("Cure") then
  107. if game:GetService("Players").LocalPlayer.Backpack:FindFirstChild("Cure") then
  108. game:GetService("ReplicatedStorage").RemoteEvents.BackpackEvent:FireServer("Equip", game:GetService("Players").LocalPlayer.Backpack.Cure)
  109. else
  110. game:GetService("ReplicatedStorage").RemoteEvents.GiveTool:FireServer("Cure")
  111. wait(0.1)
  112. end
  113. end
  114. wait(.45)
  115. for i,v in pairs(game:GetService("Players"):GetChildren()) do
  116. game:GetService("ReplicatedStorage").RemoteEvents.CurePlayer:FireServer(v)
  117. end
  118. end)
  119.  
  120. w:Button("Kill BadGuys", function()
  121. for count = 1, 20 do
  122. for i,v in pairs(game.Workspace.BadGuys:GetChildren()) do
  123. game:GetService("ReplicatedStorage").RemoteEvents.HitBadguy:FireServer(v, 10)
  124. end
  125. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement