local OrionLib = loadstring(game:HttpGet('https://raw.githubusercontent.com/shlexware/Orion/main/source'))() local Window = OrionLib:MakeWindow({ Name = "CyberHub", HidePremium = false, SaveConfig = true, ConfigFolder = "CyberHub" }) local MainTab = Window:MakeTab({ Name = "Main", Icon = "rbxassetid://4483345998", PremiumOnly = false }) local PlayerTab = Window:MakeTab({ Name = "Player", Icon = "rbxassetid://4483345998", PremiumOnly = false }) local function Notify(text) OrionLib:MakeNotification({ Name = "CyberHub", Content = text, Image = "rbxassetid://4483345998", Time = 3 }) end MainTab:AddButton({ Name = "Bkit Breaker", Callback = function() for _, v in pairs(game.Players:GetPlayers()) do if v \~= game.Players.LocalPlayer then pcall(function() if v.Character and v.Character:FindFirstChildOfClass("Tool") then for _, tool in pairs(v.Backpack:GetChildren()) do if tool:IsA("Tool") and (tool.Name:lower():find("build") or tool.Name:lower():find("bkit") or tool.Name:lower():find("btool")) then tool:Destroy() end end for _, tool in pairs(v.Character:GetChildren()) do if tool:IsA("Tool") and (tool.Name:lower():find("build") or tool.Name:lower():find("bkit") or tool.Name:lower():find("btool")) then tool:Destroy() end end end end) end end Notify("Bkit Breaker executed") end }) MainTab:AddButton({ Name = "Bkit Fixer", Callback = function() pcall(function() local args = { [1] = "bkit" } game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Command"):FireServer(unpack(args)) end) Notify("Bkit Fixer executed") end }) local infJump = false local infJumpConnection PlayerTab:AddToggle({ Name = "Infinite Jump", Default = false, Callback = function(Value) infJump = Value if infJump then infJumpConnection = game:GetService("UserInputService").JumpRequest:Connect(function() if game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid") then game.Players.LocalPlayer.Character:FindFirstChildOfClass("Humanoid"):ChangeState(Enum.HumanoidStateType.Jumping) end end) Notify("Infinite Jump enabled") else if infJumpConnection then infJumpConnection:Disconnect() infJumpConnection = nil end Notify("Infinite Jump disabled") end end }) local antiFling = false local antiFlingConnection PlayerTab:AddToggle({ Name = "Anti Fling", Default = false, Callback = function(Value) antiFling = Value if antiFling then antiFlingConnection = game:GetService("RunService").Stepped:Connect(function() local char = game.Players.LocalPlayer.Character if char and char:FindFirstChild("HumanoidRootPart") then for _, v in pairs(char:GetDescendants()) do if v:IsA("BodyVelocity") or v:IsA("BodyAngularVelocity") or v:IsA("BodyForce") or v:IsA("BodyThrust") or v:IsA("BodyPosition") then v:Destroy() end end char.HumanoidRootPart.Velocity = Vector3.new(0, 0, 0) char.HumanoidRootPart.RotVelocity = Vector3.new(0, 0, 0) end end) Notify("Anti Fling enabled") else if antiFlingConnection then antiFlingConnection:Disconnect() antiFlingConnection = nil end Notify("Anti Fling disabled") end end }) local antiAfk = false local antiAfkConnection PlayerTab:AddToggle({ Name = "Anti AFK", Default = false, Callback = function(Value) antiAfk = Value if antiAfk then antiAfkConnection = game:GetService("Players").LocalPlayer.Idled:Connect(function() game:GetService("VirtualUser"):CaptureController() game:GetService("VirtualUser"):ClickButton2(Vector2.new()) end) Notify("Anti AFK enabled") else if antiAfkConnection then antiAfkConnection:Disconnect() antiAfkConnection = nil end Notify("Anti AFK disabled") end end }) local shiftlock = false PlayerTab:AddToggle({ Name = "Shiftlock", Default = false, Callback = function(Value) shiftlock = Value if shiftlock then game.Players.LocalPlayer.DevEnableMouseLock = true Notify("Shiftlock enabled") else game.Players.LocalPlayer.DevEnableMouseLock = false Notify("Shiftlock disabled") end end }) OrionLib:Init()