local Players = game:GetService("Players") local Lighting = game:GetService("Lighting") local TeleportService = game:GetService("TeleportService") local RunService = game:GetService("RunService") local player = Players.LocalPlayer local char = player.Character or player.CharacterAdded:Wait() local gui = Instance.new("ScreenGui") gui.Name = "ZHUB" gui.ResetOnSpawn = false gui.Parent = player.PlayerGui local frame = Instance.new("Frame") frame.Parent = gui frame.Size = UDim2.new(0,320,0,420) frame.Position = UDim2.new(0.5,-160,0.5,-210) frame.BackgroundColor3 = Color3.fromRGB(10,10,10) frame.Active = true frame.Draggable = true Instance.new("UICorner",frame).CornerRadius = UDim.new(0,12) local stroke = Instance.new("UIStroke",frame) stroke.Color = Color3.fromRGB(0,170,255) stroke.Thickness = 2 local title = Instance.new("TextLabel") title.Parent = frame title.Size = UDim2.new(1,0,0,45) title.BackgroundTransparency = 1 title.Text = "Z HUB" title.Font = Enum.Font.GothamBlack title.TextScaled = true title.TextColor3 = Color3.fromRGB(0,170,255) local layout = Instance.new("UIListLayout",frame) layout.Padding = UDim.new(0,8) layout.HorizontalAlignment = Enum.HorizontalAlignment.Center layout.VerticalAlignment = Enum.VerticalAlignment.Top title.LayoutOrder = 0 local function makeButton(text,callback) local btn = Instance.new("TextButton") btn.Parent = frame btn.Size = UDim2.new(0,280,0,40) btn.BackgroundColor3 = Color3.fromRGB(25,25,25) btn.TextColor3 = Color3.new(1,1,1) btn.Font = Enum.Font.GothamBold btn.TextSize = 16 btn.Text = text Instance.new("UICorner",btn).CornerRadius = UDim.new(0,10) btn.MouseButton1Click:Connect(callback) end makeButton("Speed Boost",function() local h = char:FindFirstChild("Humanoid") if h then h.WalkSpeed = 32 end end) makeButton("Jump Boost",function() local h = char:FindFirstChild("Humanoid") if h then h.JumpPower = 100 end end) makeButton("Reset Stats",function() local h = char:FindFirstChild("Humanoid") if h then h.WalkSpeed = 16 h.JumpPower = 50 end end) makeButton("Teleport Spawn",function() if char:FindFirstChild("HumanoidRootPart") then char.HumanoidRootPart.CFrame = CFrame.new(0,10,0) end end) makeButton("FullBright",function() Lighting.Brightness = 3 Lighting.ClockTime = 14 Lighting.FogEnd = 100000 Lighting.GlobalShadows = false end) makeButton("FPS Boost",function() for _,v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") then v.Material = Enum.Material.Plastic v.Reflectance = 0 end end settings().Rendering.QualityLevel = Enum.QualityLevel.Level01 end) local noclip = false makeButton("Toggle Noclip",function() noclip = not noclip end) RunService.Stepped:Connect(function() if noclip and char then for _,v in pairs(char:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = false end end end end) makeButton("Infinite Zoom",function() player.CameraMaxZoomDistance = 9999 player.CameraMinZoomDistance = 0 end) makeButton("Rejoin Server",function() TeleportService:Teleport(game.PlaceId,player) end) makeButton("Reset Character",function() char:BreakJoints() end) print("Z HUB Loaded")