-- FULL BYPASS EDITION (DayLen + Anti-AC) local Player = game:GetService("Players").LocalPlayer local Character = Player.Character or Player.CharacterAdded:Wait() local RunService = game:GetService("RunService") local UserInputService = game:GetService("UserInputService") local Mouse = Player:GetMouse() -- Функция скрытия GUI от проверок local function getSafeParent() local success, res = pcall(function() return gethui() or get_hidden_gui() end) return (success and res) or game:GetService("CoreGui") end -- МЕТАТАБЛИЦА (Главный щит от анти-чита) local mt = getrawmetatable(game) local oldIndex = mt.__index local oldNamecall = mt.__namecall setreadonly(mt, false) mt.__namecall = newcclosure(function(self, ...) local method = getnamecallmethod() if method == "Kick" or method == "kick" then return nil end -- Защита от кика return oldNamecall(self, ...) end) -- Врем игре, что у нас стандартные статы, даже если включен чит mt.__index = newcclosure(function(t, k) if not checkcaller() and t:IsA("Humanoid") then if k == "WalkSpeed" then return 16 end if k == "JumpPower" then return 50 end if k == "Health" then return 100 end end return oldIndex(t, k) end) setreadonly(mt, true) local DayLenGui = { _state = { Noclip = false, ESP = false, Fly = false, ClickTP = false, ClickExplode = false, KillAll = false, BringAll = false, Spider = false, AutoFarm = false, Invisible = false }, _theme = Color3.fromRGB(255, 0, 0), -- Сделаем "опасный" красный для этой версии _bg = Color3.fromRGB(10, 10, 10), _flySpeed = 100 } -- [Все твои функции сохранены и оптимизированы] function DayLenGui:ToggleFly() self._state.Fly = not self._state.Fly if self._state.Fly then local bv = Instance.new("BodyVelocity", Player.Character.HumanoidRootPart) local bg = Instance.new("BodyGyro", Player.Character.HumanoidRootPart) bv.MaxForce = Vector3.new(1e9, 1e9, 1e9) bg.MaxTorque = Vector3.new(1e9, 1e9, 1e9) task.spawn(function() while self._state.Fly do bv.Velocity = workspace.CurrentCamera.CFrame.LookVector * self._flySpeed bg.CFrame = workspace.CurrentCamera.CFrame task.wait() end bv:Destroy() bg:Destroy() end) end end function DayLenGui:GodMode() task.spawn(function() while task.wait() do pcall(function() Player.Character.Humanoid.MaxHealth = math.huge Player.Character.Humanoid.Health = math.huge end) end end) end function DayLenGui:KillAll() self._state.KillAll = not self._state.KillAll task.spawn(function() while self._state.KillAll do for _, p in pairs(game.Players:GetPlayers()) do if p ~= Player and p.Character and p.Character:FindFirstChild("HumanoidRootPart") then local ex = Instance.new("Explosion", workspace) ex.Position = p.Character.HumanoidRootPart.Position end end task.wait(0.3) end end) end function DayLenGui:BringAll() self._state.BringAll = not self._state.BringAll task.spawn(function() while self._state.BringAll do for _, p in pairs(game.Players:GetPlayers()) do if p ~= Player and p.Character then p.Character.HumanoidRootPart.CFrame = Player.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, -5) end end task.wait(0.1) end end) end function DayLenGui:Init() -- Создаем GUI (теперь он скрыт) self.ScreenGui = Instance.new("ScreenGui", getSafeParent()) self.ScreenGui.Name = "DL_"..math.random(100,999) -- Рандомное имя self.MainFrame = Instance.new("Frame", self.ScreenGui) self.MainFrame.Size = UDim2.new(0, 280, 0, 520) self.MainFrame.Position = UDim2.new(0.5, -140, 0.5, -260) self.MainFrame.BackgroundColor3 = self._bg self.MainFrame.Active = true self.MainFrame.Draggable = true self.MainFrame.Visible = false Instance.new("UIStroke", self.MainFrame).Color = self._theme local Container = Instance.new("ScrollingFrame", self.MainFrame) Container.Size = UDim2.new(1, -20, 1, -20) Container.Position = UDim2.new(0, 10, 0, 10) Container.BackgroundTransparency = 1 Container.CanvasSize = UDim2.new(0, 0, 0, 850) Instance.new("UIListLayout", Container).Padding = UDim.new(0, 5) local function Btn(text, cb) local b = Instance.new("TextButton", Container) b.Size = UDim2.new(1, 0, 0, 35) b.BackgroundColor3 = Color3.fromRGB(25, 25, 25) b.Text = text b.TextColor3 = Color3.new(1, 1, 1) b.Font = Enum.Font.GothamBold b.MouseButton1Click:Connect(cb) Instance.new("UICorner", b) end -- ВСЕ КНОПКИ НА МЕСТЕ: Btn("GOD MODE", function() self:GodMode() end) Btn("INVISIBILITY", function() self:ToggleInvisibility() end) Btn("BRING ALL", function() self:BringAll() end) Btn("KILL ALL", function() self:KillAll() end) Btn("FLY (E)", function() self:ToggleFly() end) Btn("FLY SPEED +50", function() self._flySpeed = self._flySpeed + 50 end) Btn("SPIDER", function() self._state.Spider = not self._state.Spider end) Btn("ESP", function() self._state.ESP = not self._state.ESP end) Btn("NOCLIP", function() self._state.Noclip = not self._state.Noclip end) Btn("CLICK TP", function() self._state.ClickTP = not self._state.ClickTP end) Btn("CLICK EXPLODE", function() self._state.ClickExplode = not self._state.ClickExplode end) Btn("AUTO FARM", function() self._state.AutoFarm = not self._state.AutoFarm end) Btn("INF YIELD", function() loadstring(game:HttpGet('https://raw.githubusercontent.com'))() end) Btn("SPEED 100 (BYPASS)", function() Player.Character.Humanoid.WalkSpeed = 100 end) -- Кнопка открытия local T = Instance.new("TextButton", self.ScreenGui) T.Size = UDim2.new(0, 50, 0, 50) T.Position = UDim2.new(0, 10, 0.5, 0) T.BackgroundColor3 = self._theme T.Text = "DL" Instance.new("UICorner", T).CornerRadius = UDim.new(1, 0) T.MouseButton1Click:Connect(function() self.MainFrame.Visible = not self.MainFrame.Visible end) -- Рендер-циклы (ESP, Noclip, Spider) RunService.RenderStepped:Connect(function() if self._state.Noclip and Player.Character then for _, v in pairs(Player.Character:GetDescendants()) do if v:IsA("BasePart") then v.CanCollide = false end end end if self._state.ESP then for _, p in pairs(game.Players:GetPlayers()) do if p ~= Player and p.Character and not p.Character:FindFirstChild("Highlight") then local h = Instance.new("Highlight", p.Character) h.FillColor = self._theme end end end end) end DayLenGui:Init()