Advertisement
Baconhack_26

break in story script gui

Sep 24th, 2023
4,774
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.31 KB | None | 0 0
  1. local lib = loadstring(game:HttpGet("https://raw.githubusercontent.com/acsu123/HOHO_H/main/hoho_lib.lua", true))()
  2. local win = lib:Window("Fixed","Break In",Color3.new(0.333333, 0.666667, 1))
  3. local tab = win:Tab("Main")
  4. local label = tab:Label("Label", properties) --properties: {["Visible"] = flase}
  5. label:NewLabel("Main", properties)
  6. tab:Line()
  7. tab:Button("Get Chips", function()
  8. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Chips")
  9. end)
  10.  
  11. tab:Line()
  12. tab:Button("Get Cola", function()
  13. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("BloxyCola")
  14. end)
  15.  
  16. tab:Line()
  17. tab:Button("Get Apple", function()
  18. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Apple")
  19. end)
  20.  
  21. tab:Line()
  22. tab:Button("Get Pizza", function()
  23. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Pizza3")
  24. end)
  25.  
  26. tab:Line()
  27. tab:Button("Get Cookie", function()
  28. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Cookie")
  29. end)
  30.  
  31. tab:Line()
  32. tab:Button("Get Medkit", function()
  33. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("MedKit")
  34. end)
  35.  
  36. tab:Line()
  37. tab:Button("Get Cure", function()
  38. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Cure")
  39. end)
  40.  
  41. tab:Line()
  42. tab:Button("Get Bat(Weapon)", function()
  43. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Bat")
  44. end)
  45.  
  46. tab:Line()
  47. tab:Button("Get Teddy", function()
  48. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("TeddyBloxpin")
  49. end)
  50.  
  51. tab:Line()
  52. tab:Button("Get Sword", function()
  53. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("LinkedSword")
  54. end)
  55.  
  56. tab:Line()
  57. tab:Button("Get Lollipop", function()
  58. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Lollipop")
  59. end)
  60.  
  61. tab:Line()
  62. tab:Button("Get Key", function()
  63. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Key")
  64. end)
  65.  
  66. tab:Line()
  67. tab:Button("Get Hammer", function()
  68. local A_1 = true
  69. local A_2 = "Hammer"
  70. local Event = game:GetService("ReplicatedStorage").RemoteEvents.BasementWeapon
  71. Event:FireServer(A_1, A_2)
  72. end)
  73.  
  74. tab:Line()
  75. tab:Button("Get Planks", function()
  76. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Plank")
  77. end)
  78.  
  79. local tab = win:Tab("Role")
  80. local label = tab:Label("Label", properties)
  81. label:NewLabel("This is only meant for lobby", properties)
  82. tab:Line()
  83. tab:Button("Police", function()
  84. local A_1 = "Gun"
  85. local A_2 = true
  86. local Event = game:GetService("ReplicatedStorage").RemoteEvents.OutsideRole
  87. Event:FireServer(A_1, A_2)
  88. end)
  89.  
  90. tab:Line()
  91. tab:Button("Swat", function()
  92. local A_1 = "SwatGun"
  93. local A_2 = true
  94. local Event = game:GetService("ReplicatedStorage").RemoteEvents.OutsideRole
  95. Event:FireServer(A_1, A_2)
  96. end)
  97.  
  98. local tab = win:Tab("Teleport")
  99. local label = tab:Label("Label", properties)
  100. label:NewLabel("Teleport Section", properties)
  101. tab:Line()
  102. tab:Button("Basement", function()
  103. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(71, -15, -163)
  104. end)
  105.  
  106. tab:Line()
  107. tab:Button("House", function()
  108. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-36, 3, -200)
  109. end)
  110.  
  111. tab:Line()
  112. tab:Button("Hiding Spot", function()
  113. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-42.86656951904297, 6.433286666870117, -222.01171875)
  114. end)
  115.  
  116. tab:Line()
  117. tab:Button("Attic", function()
  118. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-16, 35, -220)
  119. end)
  120.  
  121. tab:Line()
  122. tab:Button("Store", function()
  123. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-422, 3, -121)
  124. end)
  125.  
  126. tab:Line()
  127. tab:Button("Sewer", function()
  128. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(129, 3, -125)
  129. end)
  130.  
  131. tab:Line()
  132. tab:Button("Boss Room", function()
  133. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-39, -287, -1480)
  134. end)
  135.  
  136. local tab = win:Tab("Misc")
  137. local label = tab:Label("Label", properties)
  138. label:NewLabel("Misc Section", properties)
  139. tab:Line()
  140. tab:Button("Kill Enemies", function()
  141. for i,v in pairs(game.Workspace.BadGuys:GetChildren()) do
  142. for i = 1, 50 do
  143. game:GetService("ReplicatedStorage").RemoteEvents.HitBadguy:FireServer(v,10)
  144. game:GetService("ReplicatedStorage").RemoteEvents.HitBadguy:FireServer(v,996)
  145. game:GetService("ReplicatedStorage").RemoteEvents.HitBadguy:FireServer(v,9)
  146. game:GetService("ReplicatedStorage").RemoteEvents.HitBadguy:FireServer(v,8)
  147. game:GetService("ReplicatedStorage").RemoteEvents.HitBadguy:FireServer(v,996)
  148. end
  149. end
  150. end)
  151.  
  152. tab:Line()
  153. tab:Button("Open Safe", function() game.ReplicatedStorage.RemoteEvents.Safe:FireServer(game:GetService("Workspace").CodeNote.SurfaceGui.TextLabel.Text)
  154. end)
  155.  
  156. tab:Line()
  157. tab:Button("Heal Instantly", function()
  158. for i = 1, 200 do
  159. wait(0.005)
  160. local A_1 = "Cat"
  161. local Event = game:GetService("ReplicatedStorage").RemoteEvents.Energy
  162. Event:FireServer(A_1)
  163. end
  164. end)
  165.  
  166. tab:Line()
  167. tab:Button("Drop Tool", function(Drop)
  168. loadstring(game:HttpGet("https://pastebin.com/raw/ZYXmS4Sb"))(Drop)
  169. end)
  170.  
  171. tab:Line()
  172. tab:Button("Be Friends with Cat", function()
  173. local Target = game:GetService("ReplicatedStorage").RemoteEvents.Cattery;
  174. Target:FireServer();
  175. end)
  176.  
  177. local tab = win:Tab("Other")
  178. local label = tab:Label("Label", properties)
  179. label:NewLabel("Other Scripts", properties)
  180.  
  181. tab:Line()
  182. tab:Button("Fly Gui", function(e)
  183. loadstring(game:HttpGet('https://raw.githubusercontent.com/Pro69Yes/sussy-Script/main/SecuredFlyGuiv3.lua'))(e)
  184. end)
  185.  
  186. tab:Line()
  187. tab:Button("get all badge jk", function(e)
  188. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Chips")
  189. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Chips")
  190. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Chips")
  191. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Chips")
  192. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Chips")
  193. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Chips")
  194. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Chips")
  195. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Chips")
  196. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Chips")
  197. game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Chips")
  198. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement