--๐Ÿ”ฅ Kaizenn Hub ๐Ÿ”ซ FULL GUI WITH LOADING SCREEN -- ๐Ÿ”ฅ LOADING SCREEN local loadingGui = Instance.new("ScreenGui", game.CoreGui) loadingGui.Name = "KaizennLoading" local bg = Instance.new("Frame", loadingGui) bg.BackgroundColor3 = Color3.new(0, 0, 0) bg.Size = UDim2.new(1, 0, 1, 0) local loadingText = Instance.new("TextLabel", bg) loadingText.Size = UDim2.new(0, 500, 0, 50) loadingText.Position = UDim2.new(0.5, -250, 0.5, -25) loadingText.Text = "๐Ÿ” Bypassing Anti-Cheat..." loadingText.TextColor3 = Color3.new(1, 1, 1) loadingText.BackgroundTransparency = 1 loadingText.Font = Enum.Font.GothamBold loadingText.TextScaled = true wait(5) loadingText.Text = "โš™๏ธ Loading Kaizenn Hub..." wait(5) loadingGui:Destroy() -- ๐Ÿ”ฅ MAIN HUB GUI local Kaizenn = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local Title = Instance.new("TextLabel") local GameSwitch = Instance.new("TextButton") local DeadRailsFrame = Instance.new("Frame") local DeadSpellsFrame = Instance.new("Frame") Kaizenn.Name = "Kaizenn" Kaizenn.Parent = game.CoreGui MainFrame.Name = "MainFrame" MainFrame.Parent = Kaizenn MainFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) MainFrame.Position = UDim2.new(0.3, 0, 0.2, 0) MainFrame.Size = UDim2.new(0, 420, 0, 370) MainFrame.BorderSizePixel = 0 Title.Name = "Title" Title.Parent = MainFrame Title.Text = "๐Ÿ”ฅ Kaizenn Hub ๐Ÿ”ซ" Title.Font = Enum.Font.GothamBold Title.TextSize = 24 Title.TextColor3 = Color3.new(1, 1, 1) Title.BackgroundTransparency = 1 Title.Position = UDim2.new(0, 0, 0, 10) Title.Size = UDim2.new(1, 0, 0, 30) GameSwitch.Parent = MainFrame GameSwitch.Text = "๐Ÿ” Switch Game" GameSwitch.Position = UDim2.new(0.3, 0, 0.15, 0) GameSwitch.Size = UDim2.new(0.4, 0, 0, 30) GameSwitch.BackgroundColor3 = Color3.fromRGB(60, 60, 60) GameSwitch.TextColor3 = Color3.new(1, 1, 1) GameSwitch.MouseButton1Click:Connect(function() DeadRailsFrame.Visible = not DeadRailsFrame.Visible DeadSpellsFrame.Visible = not DeadSpellsFrame.Visible end) DeadRailsFrame.Parent = MainFrame DeadRailsFrame.Position = UDim2.new(0, 0, 0.3, 0) DeadRailsFrame.Size = UDim2.new(1, 0, 0.7, 0) DeadRailsFrame.Visible = true DeadRailsFrame.BackgroundTransparency = 1 DeadSpellsFrame.Parent = MainFrame DeadSpellsFrame.Position = UDim2.new(0, 0, 0.3, 0) DeadSpellsFrame.Size = UDim2.new(1, 0, 0.7, 0) DeadSpellsFrame.Visible = false DeadSpellsFrame.BackgroundTransparency = 1 function createButton(parent, text, yPos, callback) local btn = Instance.new("TextButton") btn.Parent = parent btn.Text = text btn.Size = UDim2.new(0.85, 0, 0, 30) btn.Position = UDim2.new(0.075, 0, yPos, 0) btn.BackgroundColor3 = Color3.fromRGB(45, 45, 45) btn.TextColor3 = Color3.new(1, 1, 1) btn.Font = Enum.Font.Gotham btn.TextSize = 14 btn.MouseButton1Click:Connect(callback) return btn end -- DEAD RAILS BUTTONS createButton(DeadRailsFrame, "๐Ÿ‘๏ธ ESP (Dead Rails)", 0.05, function() print("ESP for Dead Rails Loaded") end) createButton(DeadRailsFrame, "๐Ÿš€ Speed Hack (Dead Rails)", 0.15, function() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 50 end) createButton(DeadRailsFrame, "๐Ÿ’ฃ Kill Aura (Fake)", 0.25, function() print("Kill Aura Activated") end) createButton(DeadRailsFrame, "๐Ÿ“ก Teleport Forward", 0.35, function() local char = game.Players.LocalPlayer.Character char:MoveTo(char.HumanoidRootPart.Position + Vector3.new(0, 0, -20)) end) createButton(DeadRailsFrame, "๐Ÿ† Auto Win (Teleport to Win)", 0.45, function() local root = game.Players.LocalPlayer.Character:FindFirstChild("HumanoidRootPart") if root then root.CFrame = CFrame.new(Vector3.new(9999, 100, 9999)) end end) createButton(DeadRailsFrame, "๐Ÿ’ฌ Spam Taunt in Chat", 0.55, function() local msg = "๐Ÿ’€ Kaizenn Hub ๐Ÿ”ซ Too EZ โ€ผ๏ธ" for i = 1, 5 do game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer(msg, "All") wait(0.5) end end) createButton(DeadRailsFrame, "๐ŸงŠ Freeze Enemies (Fake)", 0.65, function() print("Freeze Enemies Activated - Visual Only") end) createButton(DeadRailsFrame, "๐Ÿงน Clear Fog / Boost Vision", 0.75, function() if game.Lighting:FindFirstChild("Atmosphere") then game.Lighting.Atmosphere:Destroy() end game.Lighting.FogEnd = 100000 end) -- DEAD SPELLS BUTTONS createButton(DeadSpellsFrame, "๐Ÿ‘๏ธ ESP (Dead Spells)", 0.05, function() print("ESP for Dead Spells Loaded") end) createButton(DeadSpellsFrame, "๐Ÿ•Š๏ธ Fly Hack (Dead Spells)", 0.15, function() local p = game.Players.LocalPlayer local root = p.Character:FindFirstChild("HumanoidRootPart") local flying = Instance.new("BodyVelocity", root) flying.Velocity = Vector3.new(0, 60, 0) flying.MaxForce = Vector3.new(0, math.huge, 0) wait(3) flying:Destroy() end) createButton(DeadSpellsFrame, "๐Ÿง  Infinite Jump", 0.25, function() local plr = game:GetService("Players").LocalPlayer game:GetService("UserInputService").JumpRequest:Connect(function() plr.Character:FindFirstChildOfClass("Humanoid"):ChangeState("Jumping") end) end) createButton(DeadSpellsFrame, "๐Ÿš€ Speed Boost (Dead Spells)", 0.35, function() game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 60 end) createButton(DeadSpellsFrame, "๐ŸŒ€ God Mode (Fake)", 0.45, function() local char = game.Players.LocalPlayer.Character if char:FindFirstChild("Humanoid") then char.Humanoid.Name = "GodHumanoid" print("Fake God Mode enabled.") end end) createButton(DeadSpellsFrame, "๐Ÿ”ฅ Auto Cast (Loop Q key)", 0.55, function() while wait(1) do game:GetService("VirtualInputManager"):SendKeyEvent(true, "Q", false, game) wait(0.1) game:GetService("VirtualInputManager"):SendKeyEvent(false, "Q", false, game) end end) createButton(DeadSpellsFrame, "๐ŸŽฏ Aim Spell (Fake Snap)", 0.65, function() local plr = game.Players.LocalPlayer local cam = workspace.CurrentCamera local closest = nil local shortest = math.huge for _, v in pairs(game.Players:GetPlayers()) do if v ~= plr and v.Character and v.Character:FindFirstChild("HumanoidRootPart") then local dist = (plr.Character.HumanoidRootPart.Position - v.Character.HumanoidRootPart.Position).magnitude if dist < shortest then shortest = dist closest = v end end end if closest then cam.CFrame = CFrame.new(cam.CFrame.Position, closest.Character.HumanoidRootPart.Position) end end) createButton(DeadSpellsFrame, "๐Ÿ•ต๏ธ No Fog / Night Vision", 0.75, function() game.Lighting.FogEnd = 100000 game.Lighting.Brightness = 5 game.Lighting.TimeOfDay = "14:00:00" end) createButton(DeadSpellsFrame, "๐Ÿง™ Max Rank (Fake UI)", 0.85, function() local rankLabel = Instance.new("TextLabel", game.Players.LocalPlayer.PlayerGui) rankLabel.Size = UDim2.new(0, 200, 0, 30) rankLabel.Position = UDim2.new(0.4, 0, 0.05, 0) rankLabel.Text = "๐Ÿง™ Rank: Arcane Master (Fake)" rankLabel.TextColor3 = Color3.new(1, 1, 1) rankLabel.BackgroundTransparency = 1 rankLabel.TextScaled = true end)