-- yes open source local OrionLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/jensonhirst/Orion/main/source"))() local Window = OrionLib:MakeWindow({ Name = "Zreepy Hub | Don't Touch!", HidePremium = false, SaveConfig = true, ConfigFolder = "ZreepyHub", IntroEnabled = true, IntroText = "loading", Icon = "rbxassetid://11745872910" }) local MainTab = Window:MakeTab({ Name = "Main", Icon = "rbxassetid://4483345998" }) MainTab:AddSection({Name = "Spams"}) MainTab:AddToggle({ Name = "Automatic Press Button", Default = false, Callback = function(v) _G.AutoPress = v if v then task.spawn(function() while task.wait(0.02) do if not _G.AutoPress then break end pcall(function() local detector = workspace.Content.Button.Center:FindFirstChildWhichIsA("ClickDetector") if detector then fireclickdetector(detector) end end) end end) end end }) MainTab:AddButton({ Name = "Go into button", Callback = function() local hrp = game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") if hrp then hrp.CFrame = CFrame.new(0.34, -6.50, 0.09) end end }) MainTab:AddSection({Name = "Credits"}) MainTab:AddToggle({ Name = "AutoFarm credits", Default = false, Callback = function(v) _G.AutoFarmCredits = v task.spawn(function() while task.wait(0.05) do if not _G.AutoFarmCredits then break end local hrp = game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") if not hrp then continue end for _, obj in workspace:GetDescendants() do if obj and (obj:IsA("BasePart") or obj:IsA("Model")) and string.find(obj.Name:lower(), "credit") then hrp.CFrame = obj.CFrame task.wait(0.01) end end end end) end }) MainTab:AddSection({Name = "Anti-Death Farm"}) MainTab:AddToggle({ Name = "Float Walk", Default = false, Callback = function(v) _G.FloatWalk = v if v then task.spawn(function() local chr = game.Players.LocalPlayer.Character or game.Players.LocalPlayer.CharacterAdded:Wait() local hrp = chr:WaitForChild("HumanoidRootPart") local hum = chr:WaitForChild("Humanoid") hum.JumpPower = 0 local lockedY = hrp.Position.Y + 2 while _G.FloatWalk do local pos = hrp.Position hrp.CFrame = CFrame.new(pos.X, lockedY, pos.Z) task.wait() end if hum and hum.Parent then hum.JumpPower = 50 end end) else local hum = game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:FindFirstChild("Humanoid") if hum then hum.JumpPower = 50 end end end }) MainTab:AddSection({Name = "Social"}) MainTab:AddButton({ Name = "Join Discord", Callback = function() setclipboard("https://discord.gg/uEw7Zb9Y4p") OrionLib:MakeNotification({ Name = "Copied", Content = "Discord link copied to clipboard", Time = 4 }) end }) OrionLib:MakeNotification({ Name = "Zreepy Hub", Content = "Loaded", Time = 5 }) OrionLib:Init()