local Players = game:GetService("Players") local UserInputService = game:GetService("UserInputService") local player = Players.LocalPlayer print("Uniwersalny Wallhack zaƂadowany") local espEnabled = true -- ==================== WALLHACK ==================== local function addESP(char) if not char or char == player.Character or char:FindFirstChild("ESP") then return end local highlight = Instance.new("Highlight") highlight.Name = "ESP" highlight.FillColor = Color3.fromRGB(255, 0, 100) highlight.OutlineColor = Color3.fromRGB(255, 255, 255) highlight.FillTransparency = 0.4 highlight.OutlineTransparency = 0 highlight.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop highlight.Parent = char end local function refreshESP() for _, plr in Players:GetPlayers() do if plr ~= player and plr.Character then if espEnabled then addESP(plr.Character) else local esp = plr.Character:FindFirstChild("ESP") if esp then esp:Destroy() end end end end end -- Automatyczne dodawanie Players.PlayerAdded:Connect(function(plr) plr.CharacterAdded:Connect(function(char) task.wait(0.3) if espEnabled then addESP(char) end end) end) for _, plr in Players:GetPlayers() do if plr.Character then addESP(plr.Character) end end -- ==================== GUI ==================== local ScreenGui = Instance.new("ScreenGui") ScreenGui.ResetOnSpawn = false ScreenGui.Parent = player:WaitForChild("PlayerGui") local Frame = Instance.new("Frame") Frame.Size = UDim2.new(0, 300, 0, 160) Frame.Position = UDim2.new(0.5, -150, 0.3, 0) Frame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) Frame.Active = true Frame.Draggable = true Frame.Parent = ScreenGui local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, 0, 0, 50) Title.BackgroundColor3 = Color3.fromRGB(100, 0, 200) Title.Text = "Wallhack" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextScaled = true Title.Font = Enum.Font.GothamBold Title.Parent = Frame local ToggleBtn = Instance.new("TextButton") ToggleBtn.Size = UDim2.new(0.9, 0, 0, 60) ToggleBtn.Position = UDim2.new(0.05, 0, 0, 60) ToggleBtn.BackgroundColor3 = Color3.fromRGB(0, 170, 0) ToggleBtn.Text = "Wallhack : ON" ToggleBtn.TextColor3 = Color3.fromRGB(255, 255, 255) ToggleBtn.TextScaled = true ToggleBtn.Font = Enum.Font.GothamSemibold ToggleBtn.Parent = Frame ToggleBtn.MouseButton1Click:Connect(function() espEnabled = not espEnabled ToggleBtn.Text = "Wallhack : " .. (espEnabled and "ON" or "OFF") ToggleBtn.BackgroundColor3 = espEnabled and Color3.fromRGB(0, 170, 0) or Color3.fromRGB(170, 0, 0) refreshESP() end) print("Wallhack gotowy!")