local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))() local Window = OrionLib:MakeWindow({ Name = "Repository Hub | Frostbite Abuser", HidePremium = false, SaveConfig = false, ConfigFolder = "Orion", IntroText = "Frostbite Abuse | Repository Hub", Draggable = true }) local FBTab = Window:MakeTab({ Name = "Frostbite Abuse", Icon = "rbxassetid://7733955740", PremiumOnly = false }) local FB1Section = FBTab:AddSection({ Name = "Frostbite Abuse - Repository Hub | Slap Battles" }) FBTab:AddParagraph("Warning", "You must have frostbite, if you don't have frostbite you can get it in the others tab! And subscribe to @SlapBattlesRepository on YouTube UwU, anyways,") -- Toggle Variables local isToggleOn = false local loopDelay = 0.5 -- Default delay time -- Function to execute the ability every `loopDelay` seconds local function toggleAbilityLoop() while isToggleOn do game:GetService("ReplicatedStorage").GeneralAbility:FireServer("0") task.wait(loopDelay) end end -- Add the toggle button for Auto-Spam Frostbite Ability FBTab:AddToggle({ Name = "Auto-Spam Frostbite Ability", Default = false, Callback = function(value) isToggleOn = value if isToggleOn then coroutine.wrap(toggleAbilityLoop)() end end }) FBTab:AddButton({ Name = "Freeze Nearest Player", Callback = function() loadstring(game:HttpGet(('https://raw.githubusercontent.com/LoserGrape/Pooshiesty/main/Death')))() wait(0.2) game:GetService("ReplicatedStorage").GeneralAbility:FireServer("99") end }) local FBNSection = FBTab:AddSection({ Name = "Kill Section - Frostbite Abuse" }) -- Add the button for "Kill Nearest Frostbite + Retro" FBTab:AddButton({ Name = "Kill Nearest Frostbite + Retro", Callback = function() loadstring(game:HttpGet(('https://raw.githubusercontent.com/LoserGrape/Pooshiesty/main/Death')))() wait(0.2) game:GetService("ReplicatedStorage").GeneralAbility:FireServer("inf") wait(0.1) loadstring(game:HttpGet(('https://raw.githubusercontent.com/LoserGrape/Pooshiesty/main/Death')))() wait(0.1) game:GetService("ReplicatedStorage").RetroAbility:FireServer("Ban Hammer") end }) -- Add the button for "Kill Nearest Frostbite + Null" FBTab:AddButton({ Name = "Kill Nearest Frostbite + Null", Callback = function() loadstring(game:HttpGet(('https://raw.githubusercontent.com/LoserGrape/Pooshiesty/main/Death')))() wait(0.1) game:GetService("ReplicatedStorage").GeneralAbility:FireServer("inf") wait(0.1) loadstring(game:HttpGet(('https://raw.githubusercontent.com/LoserGrape/Pooshiesty/main/Death')))() wait(0.1) game:GetService("ReplicatedStorage").NullAbility:FireServer() end }) FBTab:AddButton({ Name = "Kill Nearest Frostbite + Rhythm Explosion", Callback = function() loadstring(game:HttpGet(('https://raw.githubusercontent.com/LoserGrape/Pooshiesty/main/Death')))() wait(0.2) game:GetService("ReplicatedStorage").GeneralAbility:FireServer("inf") wait(0.1) loadstring(game:HttpGet(('https://raw.githubusercontent.com/LoserGrape/Pooshiesty/main/Death')))() wait(0.1) game:GetService("ReplicatedStorage").rhythmevent:FireServer("AoeExplosion",0) end }) local FB2Section = FBTab:AddSection({ Name = "FrostBite Abuser Other - Repository Hub | Slap Battles" }) -- Add the toggle button for Frostbite Auto-Use Slider FBTab:AddToggle({ Name = "Frostbite Auto-Use Slider", Default = false, Callback = function(value) isToggleOn = value if isToggleOn then coroutine.wrap(toggleAbilityLoop)() end end }) -- Add the slider to adjust the loop delay time FBTab:AddSlider({ Name = "Frostbite Interval Change", Min = 0.5, -- Minimum value set to 0.5 seconds Max = 10, -- Maximum value set to 10 seconds Default = loopDelay, Color = Color3.fromRGB(153, 204, 255), -- Blue color for the slider Increment = 0.1, ValueName = "Seconds", Callback = function(value) loopDelay = value end }) FBTab:AddButton({ Name = "Use Frostbite Ability", Callback = function() game:GetService("ReplicatedStorage").GeneralAbility:FireServer("99") end }) local OTab = Window:MakeTab({ Name = "Other Stuff", Icon = "rbxassetid://7733917120", PremiumOnly = false }) local O1Section = OTab:AddSection({ Name = "Other Tab - Repository Hub" }) OTab:AddParagraph("OTHER", "This tab is used for getting the badges required for this script, or overall modifying the player's speed, or maybe antis") OTab:AddButton({ Name = "Teleport To Frostbite Obby", Callback = function() loadstring(game:HttpGet(('https://raw.githubusercontent.com/LoserGrape/sekekekke/main/sakball')))() end }) OTab:AddParagraph("Sliders", "This is overall used to set your speed or jump-power, and tbh idk why you need this lol") -- Add the slider to adjust WalkSpeed OTab:AddSlider({ Name = "WalkSpeed", Min = 21, -- Default Roblox walk speed Max = 100, -- Maximum walk speed Default = 16, -- Start at default walk speed Color = Color3.fromRGB(153, 153, 102), -- Color for the slider Increment = 1, ValueName = "WalkSpeed", Callback = function(value) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = value end }) -- Add the slider to adjust JumpPower OTab:AddSlider({ Name = "Jump-Power", Min = 50, -- Default Roblox jump power Max = 200, -- Maximum jump power Default = 50, -- Start at default jump power Color = Color3.fromRGB(153, 153, 102), -- Color for the slider Increment = 1, ValueName = "JumpPower", Callback = function(value) game.Players.LocalPlayer.Character.Humanoid.JumpPower = value end }) local O2Section = OTab:AddSection({ Name = "Anti Section - Repository Hub" }) OTab:AddToggle({ Name = "Anti Death Barriers", Default = false, Callback = function(Value) if Value == true then for i, v in pairs(game.Workspace.DEATHBARRIER:GetChildren()) do if v.ClassName == "Part" and v.Name == "BLOCK" then v.CanTouch = false end end workspace.DEATHBARRIER.CanTouch = false workspace.DEATHBARRIER2.CanTouch = false workspace.dedBarrier.CanTouch = false workspace.ArenaBarrier.CanTouch = false workspace.AntiDefaultArena.CanTouch = false else for i, v in pairs(game.Workspace.DEATHBARRIER:GetChildren()) do if v.ClassName == "Part" and v.Name == "BLOCK" then v.CanTouch = true end end workspace.DEATHBARRIER.CanTouch = true workspace.DEATHBARRIER2.CanTouch = true workspace.dedBarrier.CanTouch = true workspace.ArenaBarrier.CanTouch = true workspace.AntiDefaultArena.CanTouch = true end end }) OTab:AddToggle({ Name = "Anti Ragdoll", Default = false, Callback = function(Value) _G.AntiRagdoll = Value while _G.AntiRagdoll do if game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") and game.Players.LocalPlayer.Character:FindFirstChild("Torso") and game.Players.LocalPlayer.Character:FindFirstChild("Ragdolled") then if game.Players.LocalPlayer.Character:FindFirstChild("Ragdolled") and game.Players.LocalPlayer.Character:WaitForChild("Ragdolled").Value == true then repeat task.wait() if game.Players.LocalPlayer.Character:FindFirstChild("Torso") then game.Players.LocalPlayer.Character.Torso.Anchored = true end until game.Players.LocalPlayer.Character:FindFirstChild("Ragdolled") and game.Players.LocalPlayer.Character:WaitForChild("Ragdolled").Value == false if game.Players.LocalPlayer.Character:FindFirstChild("Torso") then game.Players.LocalPlayer.Character.Torso.Anchored = false end end end task.wait() end end }) OTab:AddParagraph("Notice", "I was a little lazy on the anti-section but wasn't lazy on the normal stuff :3") local CTab = Window:MakeTab({ Name = "Credit Owner", Icon = "rbxassetid://7734053426", PremiumOnly = false }) local C1Section = CTab:AddSection({ Name = "Credit Owner Tab - Repository Hub" }) CTab:AddParagraph("My YouTube Channel","my youtube channel is @slapbattlesrepository so go subscribe! or if your lazy theres a button under this paragraph that copys my youtube url link") CTab:AddButton({ Name = "Copy My Youtube Link", Callback = function() setclipboard("https://www.youtube.com/@SlapBattlesRepository") end }) CTab:AddParagraph("My Accounts","my official youtube account is linked within this script, my scriptblox account is the one who first posted this, @whaleroblox :3 anyways you should really pay respects cuz i did this solo") CTab:AddButton({ Name = "Copy Scriptblox Account", Callback = function() setclipboard("https://scriptblox.com/u/WhaleRoblox") end }) CTab:AddParagraph("End of script","so yeah this is the end of the script so go shoo shoo haah") OrionLib:Init()