Browse
Script Types
Tools
Community


Break In (Story)NO KEYThe script allows you to get paid gamepass items for free.
This script loads code from an external source. Review the URL and understand what it does before running it in Roblox.
1local lib = loadstring(game:HttpGet("https://raw.githubusercontent.com/acsu123/HOHO_H/main/hoho_lib.lua", true))()2local win = lib:Window("Fixed","Break In",Color3.new(0.333333, 0.666667, 1))3local tab = win:Tab("Main")4local label = tab:Label("Label", properties) --properties: {["Visible"] = flase}5label:NewLabel("Main", properties)6tab:Line()7tab:Button("Get Chips", function() 8 game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Chips")9end)1011tab:Line() 12tab:Button("Get Cola", function()13 game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("BloxyCola")14end)1516tab:Line() 17tab:Button("Get Apple", function() 18 game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Apple")19end)2021tab:Line() 22tab:Button("Get Pizza", function()23 game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Pizza3")24end)2526tab:Line() 27tab:Button("Get Cookie", function() 28 game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Cookie")29end) 3031tab:Line() 32tab:Button("Get Medkit", function() 33 game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("MedKit")34end)3536tab:Line()37tab:Button("Get Cure", function()38 game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Cure")39end)4041tab:Line() 42tab:Button("Get Bat(Weapon)", function() 43 game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Bat")44end) 4546tab:Line() 47tab:Button("Get Teddy", function() 48 game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("TeddyBloxpin")49end)5051tab:Line() 52tab:Button("Get Sword", function() 53 game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("LinkedSword")54end)5556tab:Line()57tab:Button("Get Lollipop", function()58 game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Lollipop")59end)6061tab:Line()62tab:Button("Get Key", function()63 game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Key")64end)6566tab:Line()67tab:Button("Get Hammer", function()68local A_1 = true69local A_2 = "Hammer"70local Event = game:GetService("ReplicatedStorage").RemoteEvents.BasementWeapon71Event:FireServer(A_1, A_2)72end)7374tab:Line()75tab:Button("Get Planks", function()76 game.ReplicatedStorage.RemoteEvents.GiveTool:FireServer("Plank")77end)7879local tab = win:Tab("Role")80local label = tab:Label("Label", properties)81label:NewLabel("This is only meant for lobby", properties)82tab:Line() 83tab:Button("Police", function() 84 local A_1 = "Gun"85local A_2 = true86local Event = game:GetService("ReplicatedStorage").RemoteEvents.OutsideRole87Event:FireServer(A_1, A_2)88end) 8990tab:Line() 91tab:Button("Swat", function() 92 local A_1 = "SwatGun"93local A_2 = true94local Event = game:GetService("ReplicatedStorage").RemoteEvents.OutsideRole95Event:FireServer(A_1, A_2)96end)9798local tab = win:Tab("Teleport")99local label = tab:Label("Label", properties)100label:NewLabel("Teleport Section", properties)101tab:Line() 102tab:Button("Basement", function() 103 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(71, -15, -163)104end)105106tab:Line() 107tab:Button("House", function() 108 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-36, 3, -200)109end)110111tab:Line() 112tab:Button("Hiding Spot", function() 113 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-42.86656951904297, 6.433286666870117, -222.01171875)114end)115116tab:Line() 117tab:Button("Attic", function() 118 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-16, 35, -220)119end)120121tab:Line() 122tab:Button("Store", function() 123 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-422, 3, -121)124end)125126tab:Line() 127tab:Button("Sewer", function() 128 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(129, 3, -125)129end)130131tab:Line() 132tab:Button("Boss Room", function() 133 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-39, -287, -1480)134end)135136local tab = win:Tab("Misc")137local label = tab:Label("Label", properties)138label:NewLabel("Misc Section", properties) 139tab:Line()140tab:Button("Kill Enemies", function()141 for i,v in pairs(game.Workspace.BadGuys:GetChildren()) do142 for i = 1, 50 do143 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 end149 end150end)151152tab:Line()153tab:Button("Open Safe", function() game.ReplicatedStorage.RemoteEvents.Safe:FireServer(game:GetService("Workspace").CodeNote.SurfaceGui.TextLabel.Text)154end)155156tab:Line()157tab:Button("Heal Instantly", function()158 for i = 1, 200 do159 wait(0.005)160 local A_1 = "Cat"161 local Event = game:GetService("ReplicatedStorage").RemoteEvents.Energy162 Event:FireServer(A_1)163 end164end)165166tab:Line()167tab:Button("Drop Tool", function(Drop)168 loadstring(game:HttpGet("https://pastebin.com/raw/ZYXmS4Sb"))(Drop) 169end)170171tab:Line()172tab:Button("Be Friends with Cat", function()173 local Target = game:GetService("ReplicatedStorage").RemoteEvents.Cattery;174 Target:FireServer();175end)176177local tab = win:Tab("Other")178local label = tab:Label("Label", properties)179label:NewLabel("Other Scripts", properties) 180181tab:Line()182tab:Button("Fly Gui", function(e)183loadstring(game:HttpGet('https://raw.githubusercontent.com/Pro69Yes/sussy-Script/main/SecuredFlyGuiv3.lua'))(e)184end)by Cracky4 · 1 script · 36 views




Comments
Loading comments…