local player = game.Players.LocalPlayer -- GUI Creation local screenGui = Instance.new("ScreenGui") screenGui.Parent = player.PlayerGui -- Green & Blue Cube (Key Input) local keyFrame = Instance.new("Frame") keyFrame.Size = UDim2.new(0, 300, 0, 200) keyFrame.Position = UDim2.new(0.5, -150, 0.5, -100) keyFrame.BackgroundColor3 = Color3.fromRGB(0, 255, 0) keyFrame.Parent = screenGui local keyInput = Instance.new("TextBox") keyInput.Size = UDim2.new(0.8, 0, 0.3, 0) keyInput.Position = UDim2.new(0.1, 0, 0.2, 0) keyInput.PlaceholderText = "Enter Key..." keyInput.TextScaled = true keyInput.Parent = keyFrame local receiveKeyButton = Instance.new("TextButton") receiveKeyButton.Size = UDim2.new(0.8, 0, 0.3, 0) receiveKeyButton.Position = UDim2.new(0.1, 0, 0.6, 0) receiveKeyButton.Text = "Receive Key" receiveKeyButton.TextScaled = true receiveKeyButton.Parent = keyFrame local secretKey = "zhdidjd'[©=¥§¥[©\\zeiu29372839wn(_;sKDjkxnf¢™°$${©." receiveKeyButton.MouseButton1Click:Connect(function() setclipboard(secretKey) end) keyInput.FocusLost:Connect(function(enterPressed) if enterPressed and keyInput.Text == secretKey then keyFrame:Destroy() -- Main Hub local hubFrame = Instance.new("Frame") hubFrame.Size = UDim2.new(0, 200, 0, 250) hubFrame.Position = UDim2.new(1, -210, 0, 50) hubFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 255) hubFrame.Parent = screenGui local titleLabel = Instance.new("TextLabel") titleLabel.Size = UDim2.new(1, 0, 0, 30) titleLabel.Text = "GUERY HUB" titleLabel.TextColor3 = Color3.fromRGB(255, 255, 255) titleLabel.TextScaled = true titleLabel.Parent = hubFrame local wallhackButton = Instance.new("TextButton") wallhackButton.Size = UDim2.new(1, 0, 0, 40) wallhackButton.Position = UDim2.new(0, 0, 0.15, 0) wallhackButton.Text = "Wallhack" wallhackButton.BackgroundColor3 = Color3.fromRGB(128, 128, 128) wallhackButton.TextColor3 = Color3.fromRGB(255, 255, 255) wallhackButton.TextScaled = true wallhackButton.Parent = hubFrame local flyButton = Instance.new("TextButton") flyButton.Size = UDim2.new(1, 0, 0, 40) flyButton.Position = UDim2.new(0, 0, 0.35, 0) flyButton.Text = "Fly" flyButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0) flyButton.TextColor3 = Color3.fromRGB(255, 255, 255) flyButton.TextScaled = true flyButton.Parent = hubFrame local tpButton = Instance.new("TextButton") tpButton.Size = UDim2.new(1, 0, 0, 40) tpButton.Position = UDim2.new(0, 0, 0.55, 0) tpButton.Text = "Ko" tpButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) tpButton.TextColor3 = Color3.fromRGB(255, 255, 255) tpButton.TextScaled = true tpButton.Parent = hubFrame local pistolButton = Instance.new("TextButton") pistolButton.Size = UDim2.new(1, 0, 0, 40) pistolButton.Position = UDim2.new(0, 0, 0.75, 0) pistolButton.Text = "Pistol" pistolButton.BackgroundColor3 = Color3.fromRGB(255, 165, 0) pistolButton.TextColor3 = Color3.fromRGB(255, 255, 255) pistolButton.TextScaled = true pistolButton.Parent = hubFrame -- Wallhack Function wallhackButton.MouseButton1Click:Connect(function() for _, part in pairs(player.Character:GetChildren()) do if part:IsA("BasePart") then part.CanCollide = false end end end) -- Fly Function flyButton.MouseButton1Click:Connect(function() local humanoid = player.Character:FindFirstChildOfClass("Humanoid") humanoid.PlatformStand = true local bodyVelocity = Instance.new("BodyVelocity") bodyVelocity.MaxForce = Vector3.new(4000, 4000, 4000) bodyVelocity.Velocity = Vector3.new(0, 50, 0) bodyVelocity.Parent = player.Character.HumanoidRootPart flyButton.Text = "Flying!" wait(1) flyButton.Text = "Fly" end) -- TP Tool Function tpButton.MouseButton1Click:Connect(function() local tool = Instance.new("Tool") tool.RequiresHandle = false tool.Name = "TP Tool" tool.Activated:Connect(function() local mouse = player:GetMouse() if mouse.Target then player.Character.HumanoidRootPart.CFrame = CFrame.new(mouse.Hit.p) end end) tool.Parent = player.Backpack end) -- Pistol Function pistolButton.MouseButton1Click:Connect(function() local tool = Instance.new("Tool") tool.RequiresHandle = false tool.Name = "Guery Gun" tool.Activated:Connect(function() local mouse = player:GetMouse() if mouse.Target and mouse.Target.Parent then local targetPlayer = game.Players:GetPlayerFromCharacter(mouse.Target.Parent) if targetPlayer and targetPlayer ~= player then targetPlayer.Character:FindFirstChildOfClass("Humanoid").Health = 0 end end end) tool.Parent = player.Backpack end) end end)