local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = Library.CreateLib("🎈 Zecks Hub 🎈 I DC : ZeckBrand I", "DarkTheme") --MAIN local Main = Window:NewTab(" Main ") local MainSection = Main:NewSection(" Main ") MainSection:NewButton("Aimbot", "Aimlocks", function() local Aimbot = loadstring(game:HttpGet("https://raw.githubusercontent.com/Exunys/Aimbot-V3/main/src/Aimbot.lua"))() Aimbot.Load() end) MainSection:NewButton("Infinite Yeild", "Fly", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source"))() end) MainSection:NewToggle("SuperGuy", "Go Fast and just high", function(state) if state then game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 120 game.Players.LocalPlayer.Character.Humanoid.JumpPower = 120 else game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16 game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50 end end) local Main = Window:NewTab(" Other ") local MainSection = Main:NewSection(" Fun ") MainSection:NewButton("Fe r6 run", "old roblox animations", function() loadstring(game:HttpGet(('https://pastebin.com/raw/6GNkQUu6'),true))() end) MainSection:NewButton("Fe invisible", "make you invisible", function() local ScriptStarted = false local Keybind = "E" --Set to whatever you want, has to be the name of a KeyCode Enum. local Transparency = true --Will make you slightly transparent when you are invisible. No reason to disable. local NoClip = false --Will make your fake character no clip. local Player = game:GetService("Players").LocalPlayer local RealCharacter = Player.Character or Player.CharacterAdded:Wait() local IsInvisible = false RealCharacter.Archivable = true local FakeCharacter = RealCharacter:Clone() local Part Part = Instance.new("Part", workspace) Part.Anchored = true Part.Size = Vector3.new(200, 1, 200) Part.CFrame = CFrame.new(0, -500, 0) --Set this to whatever you want, just far away from the map. Part.CanCollide = true FakeCharacter.Parent = workspace FakeCharacter.HumanoidRootPart.CFrame = Part.CFrame * CFrame.new(0, 5, 0) for i, v in pairs(RealCharacter:GetChildren()) do if v:IsA("LocalScript") then local clone = v:Clone() clone.Disabled = true clone.Parent = FakeCharacter end end if Transparency then for i, v in pairs(FakeCharacter:GetDescendants()) do if v:IsA("BasePart") then v.Transparency = 0.7 end end end local CanInvis = true function RealCharacterDied() CanInvis = false RealCharacter:Destroy() RealCharacter = Player.Character CanInvis = true isinvisible = false FakeCharacter:Destroy() workspace.CurrentCamera.CameraSubject = RealCharacter.Humanoid RealCharacter.Archivable = true FakeCharacter = RealCharacter:Clone() Part:Destroy() Part = Instance.new("Part", workspace) Part.Anchored = true Part.Size = Vector3.new(200, 1, 200) Part.CFrame = CFrame.new(9999, 9999, 9999) --Set this to whatever you want, just far away from the map. Part.CanCollide = true FakeCharacter.Parent = workspace FakeCharacter.HumanoidRootPart.CFrame = Part.CFrame * CFrame.new(0, 5, 0) for i, v in pairs(RealCharacter:GetChildren()) do if v:IsA("LocalScript") then local clone = v:Clone() clone.Disabled = true clone.Parent = FakeCharacter end end if Transparency then for i, v in pairs(FakeCharacter:GetDescendants()) do if v:IsA("BasePart") then v.Transparency = 0.7 end end end RealCharacter.Humanoid.Died:Connect(function() RealCharacter:Destroy() FakeCharacter:Destroy() end) Player.CharacterAppearanceLoaded:Connect(RealCharacterDied) end RealCharacter.Humanoid.Died:Connect(function() RealCharacter:Destroy() FakeCharacter:Destroy() end) Player.CharacterAppearanceLoaded:Connect(RealCharacterDied) local PseudoAnchor game:GetService "RunService".RenderStepped:Connect( function() if PseudoAnchor ~= nil then PseudoAnchor.CFrame = Part.CFrame * CFrame.new(0, 5, 0) end if NoClip then FakeCharacter.Humanoid:ChangeState(11) end end ) PseudoAnchor = FakeCharacter.HumanoidRootPart local function Invisible() if IsInvisible == false then local StoredCF = RealCharacter.HumanoidRootPart.CFrame RealCharacter.HumanoidRootPart.CFrame = FakeCharacter.HumanoidRootPart.CFrame FakeCharacter.HumanoidRootPart.CFrame = StoredCF RealCharacter.Humanoid:UnequipTools() Player.Character = FakeCharacter workspace.CurrentCamera.CameraSubject = FakeCharacter.Humanoid PseudoAnchor = RealCharacter.HumanoidRootPart for i, v in pairs(FakeCharacter:GetChildren()) do if v:IsA("LocalScript") then v.Disabled = false end end IsInvisible = true else local StoredCF = FakeCharacter.HumanoidRootPart.CFrame FakeCharacter.HumanoidRootPart.CFrame = RealCharacter.HumanoidRootPart.CFrame RealCharacter.HumanoidRootPart.CFrame = StoredCF FakeCharacter.Humanoid:UnequipTools() Player.Character = RealCharacter workspace.CurrentCamera.CameraSubject = RealCharacter.Humanoid PseudoAnchor = FakeCharacter.HumanoidRootPart for i, v in pairs(FakeCharacter:GetChildren()) do if v:IsA("LocalScript") then v.Disabled = true end end IsInvisible = false end end game:GetService("UserInputService").InputBegan:Connect( function(key, gamep) if gamep then return end if key.KeyCode.Name:lower() == Keybind:lower() and CanInvis and RealCharacter and FakeCharacter then if RealCharacter:FindFirstChild("HumanoidRootPart") and FakeCharacter:FindFirstChild("HumanoidRootPart") then Invisible() end end end ) local Sound = Instance.new("Sound",game:GetService("SoundService")) Sound.SoundId = "rbxassetid://232127604" Sound:Play() game:GetService("StarterGui"):SetCore("SendNotification",{["Title"] = "Invisible Toggle Loaded",["Text"] = "Press "..Keybind.." to become change visibility.",["Duration"] = 20,["Button1"] = "Okay."}) end) local Player = Window:NewTab("Player") local PlayerSection = Player:NewSection("Player") PlayerSection:NewSlider("Speed", "makes you fast", 500, 16, function(s) -- 500 (MaxValue) | 0 (MinValue) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = s end) PlayerSection:NewSlider("JumpPower", "Jump high", 500, 50, function(s) -- 500 (MaxValue) | 0 (MinValue) game.Players.LocalPlayer.Character.Humanoid.JumpPower = s end) local Tab = Window:NewTab("Solora V4 (NEW)") local MainSection = Tab:NewSection("Solora V4 UPDATE") MainSection:NewButton("Solora v4", "NEW HUB!!!", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/samuraa1/Solara-Hub/refs/heads/main/Solara%20Hub.lua"))() end) local Tab = Window:NewTab("Our Executer") local MainSection = Tab:NewSection("Zecks V2") MainSection:NewButton("SYnapes v4 (rework)", "Modded by Zecks v2", function() loadstring(game:HttpGet("https://pastebin.com/raw/uBC6DpVa"))() end) MainSection:NewButton("Zecks V2", "OUR NEW EXECUTER!!!", function() --[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] -- Monstrum's Gui to Lua\n-- Version: 3.2 -- Instances: local infernov2 = Instance.new("ScreenGui") local InfernoGui = Instance.new("Frame") local UIAspectRatioConstraint = Instance.new("UIAspectRatioConstraint") local sidebar = Instance.new("Frame") local editor = Instance.new("TextBox") local UICorner = Instance.new("UICorner") local execute = Instance.new("TextButton") local UICorner_2 = Instance.new("UICorner") local TextLabel = Instance.new("ImageLabel") local clear = Instance.new("TextButton") local UICorner_3 = Instance.new("UICorner") local TextLabel_2 = Instance.new("ImageLabel") local close = Instance.new("TextButton") local UICorner_4 = Instance.new("UICorner") local TextLabel_3 = Instance.new("ImageLabel") local TextLabel_4 = Instance.new("TextLabel") --Properties: infernov2.Name = "infernov2" infernov2.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") infernov2.ZIndexBehavior = Enum.ZIndexBehavior.Sibling infernov2.Enabled = true InfernoGui.Name = "InfernoGui" InfernoGui.Parent = infernov2 InfernoGui.BackgroundColor3 = Color3.fromRGB(20, 20, 20) InfernoGui.BorderColor3 = Color3.fromRGB(0, 0, 0) InfernoGui.BorderSizePixel = 0 InfernoGui.Position = UDim2.new(0.383589745, 0, 0.376744181, 0) InfernoGui.Size = UDim2.new(0.212307706, 0, 0.281498104, 0) UIAspectRatioConstraint.Parent = InfernoGui UIAspectRatioConstraint.AspectRatio = 1.818 sidebar.Name = "sidebar" sidebar.Parent = InfernoGui sidebar.BackgroundColor3 = Color3.fromRGB(171, 255, 162) sidebar.BackgroundTransparency = 0.250 sidebar.BorderColor3 = Color3.fromRGB(0, 0, 0) sidebar.BorderSizePixel = 0 sidebar.Position = UDim2.new(-0.00128453935, 0, 0, 0) sidebar.Size = UDim2.new(0, 50, 0, 227) editor.Name = "editor" editor.Parent = InfernoGui editor.BackgroundColor3 = Color3.fromRGB(40, 40, 40) editor.BorderColor3 = Color3.fromRGB(0, 0, 0) editor.BorderSizePixel = 0 editor.Position = UDim2.new(0.149773329, 0, 0.259027272, 0) editor.Size = UDim2.new(0, 342, 0, 160) editor.ClearTextOnFocus = false editor.Font = Enum.Font.Code editor.MultiLine = true editor.PlaceholderColor3 = Color3.fromRGB(200, 200, 200) editor.PlaceholderText = "print(\"Hello, world!\")" editor.Text = "" editor.TextColor3 = Color3.fromRGB(255, 255, 255) editor.TextSize = 18.000 editor.TextXAlignment = Enum.TextXAlignment.Left editor.TextYAlignment = Enum.TextYAlignment.Top UICorner.Parent = editor execute.Name = "execute" execute.Parent = InfernoGui execute.BackgroundColor3 = Color3.fromRGB(30, 30, 30) execute.BorderColor3 = Color3.fromRGB(0, 0, 0) execute.BorderSizePixel = 0 execute.Position = UDim2.new(0.135265693, 0, 0.0263408422, 0) execute.Size = UDim2.new(0.108695641, 0, 0.197556317, 0) execute.Font = Enum.Font.SourceSans execute.Text = "" execute.TextColor3 = Color3.fromRGB(0, 0, 0) execute.TextSize = 14.000 UICorner_2.CornerRadius = UDim.new(1, 0) UICorner_2.Parent = execute TextLabel.Name = "TextLabel" TextLabel.Parent = execute TextLabel.AnchorPoint = Vector2.new(0.5, 0.5) TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextLabel.BackgroundTransparency = 1.000 TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0) TextLabel.BorderSizePixel = 0 TextLabel.Position = UDim2.new(0.5, 0, 0.5, 0) TextLabel.Size = UDim2.new(0.699999988, 0, 0.699999988, 0) TextLabel.Image = "rbxassetid://12008449041" TextLabel.ImageColor3 = Color3.fromRGB(0, 255, 0) clear.Name = "clear" clear.Parent = InfernoGui clear.BackgroundColor3 = Color3.fromRGB(30, 30, 30) clear.BorderColor3 = Color3.fromRGB(0, 0, 0) clear.BorderSizePixel = 0 clear.Position = UDim2.new(0.270670265, 0, 0.0263407957, 0) clear.Size = UDim2.new(0.108695641, 0, 0.197556317, 0) clear.Font = Enum.Font.SourceSans clear.Text = "" clear.TextColor3 = Color3.fromRGB(0, 0, 0) clear.TextSize = 14.000 UICorner_3.CornerRadius = UDim.new(1, 0) UICorner_3.Parent = clear TextLabel_2.Name = "TextLabel" TextLabel_2.Parent = clear TextLabel_2.AnchorPoint = Vector2.new(0.5, 0.5) TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextLabel_2.BackgroundTransparency = 1.000 TextLabel_2.BorderColor3 = Color3.fromRGB(0, 0, 0) TextLabel_2.BorderSizePixel = 0 TextLabel_2.Position = UDim2.new(0.5, 0, 0.5, 0) TextLabel_2.Size = UDim2.new(0.699999988, 0, 0.699999988, 0) TextLabel_2.Image = "rbxassetid://16898789012" TextLabel_2.ImageColor3 = Color3.fromRGB(255, 0, 0) TextLabel_2.ImageRectOffset = Vector2.new(0, 257) TextLabel_2.ImageRectSize = Vector2.new(256, 256) close.Name = "close" close.Parent = InfernoGui close.BackgroundColor3 = Color3.fromRGB(30, 30, 30) close.BorderColor3 = Color3.fromRGB(0, 0, 0) close.BorderSizePixel = 0 close.Position = UDim2.new(0.867901146, 0, 0.0263407957, 0) close.Size = UDim2.new(0.108695641, 0, 0.197556317, 0) close.Font = Enum.Font.SourceSans close.Text = "" close.TextColor3 = Color3.fromRGB(0, 0, 0) close.TextSize = 14.000 UICorner_4.CornerRadius = UDim.new(1, 0) UICorner_4.Parent = close TextLabel_3.Name = "TextLabel" TextLabel_3.Parent = close TextLabel_3.AnchorPoint = Vector2.new(0.5, 0.5) TextLabel_3.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextLabel_3.BackgroundTransparency = 1.000 TextLabel_3.BorderColor3 = Color3.fromRGB(0, 0, 0) TextLabel_3.BorderSizePixel = 0 TextLabel_3.Position = UDim2.new(0.5, 0, 0.5, 0) TextLabel_3.Size = UDim2.new(0.699999988, 0, 0.699999988, 0) TextLabel_3.Image = "rbxassetid://16898791349" TextLabel_3.ImageRectOffset = Vector2.new(257, 0) TextLabel_3.ImageRectSize = Vector2.new(256, 256) TextLabel_4.Parent = InfernoGui TextLabel_4.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextLabel_4.BackgroundTransparency = 1.000 TextLabel_4.BorderColor3 = Color3.fromRGB(0, 0, 0) TextLabel_4.BorderSizePixel = 0 TextLabel_4.Position = UDim2.new(0.405586064, 0, 0.0527357757, 0) TextLabel_4.Size = UDim2.new(0.401606441, 0, 0.131386861, 0) TextLabel_4.Font = Enum.Font.SourceSans TextLabel_4.Text = "Zecks v2.0" TextLabel_4.TextColor3 = Color3.fromRGB(200, 200, 200) TextLabel_4.TextScaled = true TextLabel_4.TextSize = 14.000 TextLabel_4.TextWrapped = true -- Scripts: local function VRJX_script() -- InfernoGui.Drag local script = Instance.new('LocalScript', InfernoGui) local UserInputService = game:GetService("UserInputService") local gui = script.Parent local dragging local dragInput local dragStart local startPos local function update(input) local delta = input.Position - dragStart gui.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y) end gui.InputBegan:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then dragging = true dragStart = input.Position startPos = gui.Position input.Changed:Connect(function() if input.UserInputState == Enum.UserInputState.End then dragging = false end end) end end) gui.InputChanged:Connect(function(input) if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then dragInput = input end end) UserInputService.InputChanged:Connect(function(input) if input == dragInput and dragging then update(input) end end) end coroutine.wrap(VRJX_script)() local function MBKNR_script() -- sidebar.LocalScript local script = Instance.new('LocalScript', sidebar) local textLabel = script.Parent local runService = game:GetService("RunService") local hue = 0 while true do hue = (hue + 1) % 360 -- Keep hue within 0-359 range local color = Color3.fromHSV(hue / 360, 1, 1) -- Convert hue to RGB textLabel.BackgroundColor3 = color task.wait(0.01) -- Adjust speed of color change end end coroutine.wrap(MBKNR_script)() local function JXEZP_script() -- execute.LocalScript local script = Instance.new('LocalScript', execute) script.Parent.MouseButton1Up:Connect(function() loadstring(script.Parent.Parent.editor.Text)() end) end coroutine.wrap(JXEZP_script)() local function JTMS_script() -- clear.LocalScript local script = Instance.new('LocalScript', clear) script.Parent.MouseButton1Up:Connect(function() script.Parent.Parent.editor.Text = "" end) end coroutine.wrap(JTMS_script)() local function NGIUVQ_script() -- close.LocalScript local script = Instance.new('LocalScript', close) script.Parent.MouseButton1Up:Connect(function() script.Parent.Parent.Visible = false end) end coroutine.wrap(NGIUVQ_script)() local function ZQGDXLW_script() -- TextLabel_4.LocalScript local script = Instance.new('LocalScript', TextLabel_4) local textLabel = script.Parent local runService = game:GetService("RunService") local hue = 0 while true do hue = (hue + 1) % 360 -- Keep hue within 0-359 range local color = Color3.fromHSV(hue / 360, 1, 1) -- Convert hue to RGB textLabel.TextColor3 = color task.wait(0.01) -- Adjust speed of color change end end coroutine.wrap(ZQGDXLW_script)() end) local MainSection = Main:NewSection(" Restart ") MainSection:NewButton("Rejoin", "IT JUST REJOINS", function() local Players = game:GetService("Players") local TeleportService = game:GetService("TeleportService") local LocalPlayer = Players.LocalPlayer local function rejoinServer() local gameId = game.PlaceId local jobId = game.JobId wait(0) TeleportService:TeleportToPlaceInstance(gameId, jobId, LocalPlayer) end _G.RejoinServer = rejoinServer wait(0) rejoinServer() end) MainSection:NewButton("Click to move", "hold ctrl and click", function() loadstring(game:HttpGet("https://pastebin.com/raw/NDkDPGTx"))() end) MainSection:NewButton("Unctest", "TEST!", function() loadstring(game:HttpGet("https://raw.githubusercontent.com/InfernusScripts/Executor-Tests/refs/heads/main/Environment/Test.lua"))() end) local MainSection = Main:NewSection(" animations ") MainSection:NewButton("Fe animations ", "ANIMATES 😁🤣", function() local Aimbot = loadstring(game:HttpGet("https://pastebin.com/raw/F5ifhqxX"))() end)