local player = game.Players.LocalPlayer local char = player.Character or player.CharacterAdded:Wait() local humanoid = char:WaitForChild("Humanoid") local screenGui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui")) screenGui.Name = "FakeExploitGui" for i = 1, 10 do local button = Instance.new("TextButton") button.Name = "Button" .. i button.Parent = screenGui button.Size = UDim2.new(0, 160, 0, 40) button.Position = UDim2.new(0, 10, 0, (i - 1) * 45 + 10) button.BackgroundColor3 = Color3.fromRGB(30, 30, 30) button.TextColor3 = Color3.fromRGB(0, 255, 0) button.Text = "Hack " .. i button.Font = Enum.Font.Code button.TextSize = 18 end local function fly() local bp = Instance.new("BodyPosition", char.PrimaryPart) bp.Position = char.PrimaryPart.Position bp.MaxForce = Vector3.new(100000, 100000, 100000) game:GetService("RunService").RenderStepped:Connect(function() bp.Position = workspace.CurrentCamera.CFrame.Position + workspace.CurrentCamera.CFrame.LookVector * 5 end) end -- Funktionen zuordnen screenGui.Button1.MouseButton1Click:Connect(function() humanoid.WalkSpeed = 100 end) -- Speed Boost screenGui.Button2.MouseButton1Click:Connect(function() humanoid.JumpPower = 150 end) -- Super Jump screenGui.Button3.MouseButton1Click:Connect(fly) -- Fly Mode screenGui.Button4.MouseButton1Click:Connect(function() for _, part in pairs(char:GetDescendants()) do if part:IsA("BasePart") then part.CanCollide = false end end end) -- NoClip screenGui.Button5.MouseButton1Click:Connect(function() char:FindFirstChild("Head").Transparency = 1 end) -- Unsichtbarkeit (nur Kopf hier) screenGui.Button6.MouseButton1Click:Connect(function() humanoid.MaxHealth = math.huge humanoid.Health = math.huge end) -- Fake Godmode screenGui.Button7.MouseButton1Click:Connect(function() local mouse = player:GetMouse() if mouse.Hit then char:MoveTo(mouse.Hit.p) end end) -- Teleport zu Maus screenGui.Button8.MouseButton1Click:Connect(function() workspace.CurrentCamera.FieldOfView = 100 end) -- Sichtfeld ändern screenGui.Button9.MouseButton1Click:Connect(function() local light = Instance.new("PointLight", char.PrimaryPart) light.Brightness = 5 light.Range = 60 end) -- Nachtlicht screenGui.Button10.MouseButton1Click:Connect(function() humanoid.Health = 0 end) -- Reset