Advertisement
baconhack_263

break in 2

Oct 12th, 2023
106
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.36 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("powered by baconhack_26","Break In 2",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 golden apple", function()
  8. local function HealAllPlayers()
  9. UnequipAllTools()
  10. task.wait(.2)
  11. GiveItem("Golden Apple")
  12. task.wait(.5)
  13. LocalPlayer.Backpack:WaitForChild("GoldenApple").Parent = LocalPlayer.Character
  14. task.wait(.5)
  15. Events:WaitForChild("HealTheNoobs"):FireServer()
  16. end
  17. end)
  18.  
  19. tab:Line()
  20. tab:Button("get pizza", function()
  21. local function HealYourself()
  22. GiveItem("Pizza")
  23. Events.Energy:FireServer(25, "Pizza")
  24. end
  25. end)
  26.  
  27. tab:Line()
  28. tab:Button("kill enemies", function()
  29. print("clicked")
  30. end)
  31.  
  32. local tab = win:Tab("Role")
  33. local label = tab:Label("Label", properties)
  34. label:NewLabel("This is only meant for lobby", properties)
  35. tab:Line()
  36. tab:Button("become hacker", function()
  37. game:GetService("ReplicatedStorage").RemoteEvents.OutsideRole:FireServer("Phone", true, false)
  38. end)
  39.  
  40. tab:Line()
  41. tab:Button("become nerd kid", function()
  42. game:GetService("ReplicatedStorage").RemoteEvents.OutsideRole:FireServer("Book", true, false)
  43. end)
  44.  
  45.  
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement