-- Пароль HISOKA (создан под FLICK) local P, UIS, RS = game:GetService("Players"), game:GetService("UserInputService"), game:GetService("RunService") local LP, Cam = P.LocalPlayer, workspace.CurrentCamera local PG = LP:WaitForChild("PlayerGui") if PG:FindFirstChild("HisokaInstantHub") then PG:FindFirstChild("HisokaInstantHub"):Destroy() end -- Создание UI панели local G = Instance.new("ScreenGui", PG) G.Name = "HisokaInstantHub" G.ResetOnSpawn = false local M = Instance.new("Frame", G) M.Size = UDim2.new(0, 380, 0, 240) M.Position = UDim2.new(0.5, -190, 0.5, -120) M.BackgroundColor3 = Color3.fromRGB(15,15,20) M.BorderSizePixel = 1 M.BorderColor3 = Color3.fromRGB(255,0,127) M.Active = true M.Draggable = true Instance.new("UICorner", M).CornerRadius = UDim.new(0, 6) local T = Instance.new("TextLabel", M) T.Size = UDim2.new(1, 0, 0, 32) T.BackgroundColor3 = Color3.fromRGB(10,10,12) T.Font = Enum.Font.ArialBold T.Text = " ♠️ HISOKA INSTANT CORE" T.TextColor3 = Color3.fromRGB(255,0,127) T.TextSize = 15 T.TextXAlignment = Enum.TextXAlignment.Left Instance.new("UICorner", T).CornerRadius = UDim.new(0, 6) local A = Instance.new("Frame", M) A.Size = UDim2.new(1, 0, 1, -32) A.Position = UDim2.new(0, 0, 0, 32) A.BackgroundTransparency = 1 local In = Instance.new("TextBox", A) In.Size = UDim2.new(0.7, 0, 0, 32) In.Position = UDim2.new(0.15, 0, 0.25, 0) In.BackgroundColor3 = Color3.fromRGB(25,25,30) In.Font = Enum.Font.Arial In.PlaceholderText = "ПАРОЛЬ (HISOKA)..." In.Text = "" In.TextColor3 = Color3.fromRGB(255,255,255) In.TextSize = 14 Instance.new("UICorner", In).CornerRadius = UDim.new(0, 4) local B = Instance.new("TextButton", A) B.Size = UDim2.new(0.4, 0, 0, 32) B.Position = UDim2.new(0.3, 0, 0.55, 0) B.BackgroundColor3 = Color3.fromRGB(255,0,127) B.Font = Enum.Font.ArialBold B.Text = "ВОЙТИ" B.TextColor3 = Color3.fromRGB(255,255,255) B.TextSize = 14 Instance.new("UICorner", B).CornerRadius = UDim.new(0, 4) local F = Instance.new("ScrollingFrame", M) F.Size = UDim2.new(1, -20, 1, -40) F.Position = UDim2.new(0, 10, 0, 36) F.BackgroundTransparency = 1 F.CanvasSize = UDim2.new(0, 0, 1.5, 0) F.ScrollBarThickness = 3 F.Visible = false local function addOpt(txt, y, cb) local b = Instance.new("TextButton", F) b.Size = UDim2.new(1, 0, 0, 28) b.Position = UDim2.new(0, 0, 0, y) b.BackgroundColor3 = Color3.fromRGB(25,25,30) b.Font = Enum.Font.ArialBold b.Text = "⚡ " .. txt b.TextColor3 = Color3.fromRGB(240,240,240) b.TextSize = 12 b.TextXAlignment = Enum.TextXAlignment.Left Instance.new("UICorner", b).CornerRadius = UDim.new(0, 4) b.MouseButton1Click:Connect(cb) return b end -- НАСТРОЙКИ И ПЕРЕМЕННЫЕ local flick, esp, lockOn = false, false, false local fovRad = 150 local FOV = Drawing.new("Circle") FOV.Thickness = 1 FOV.Color = Color3.fromRGB(255, 0, 127) FOV.Radius = fovRad FOV.Filled = false FOV.Visible = false RS.RenderStepped:Connect(function() FOV.Position = Vector2.new(Cam.ViewportSize.X / 2, Cam.ViewportSize.Y / 2) end) -- СВЕРХБЫСТРЫЙ ПОИСК ПО СТУДАМ local function getClosestEnemyInstant() local target, minDist = nil, math.huge local myChar = LP.Character local myRoot = myChar and myChar:FindFirstChild("HumanoidRootPart") if not myRoot then return nil end local plrs = P:GetPlayers() for i = 1, #plrs do local p = plrs[i] if p ~= LP and p.Character then local head = p.Character:FindFirstChild("Head") local hum = p.Character:FindFirstChildOfClass("Humanoid") if head and hum and hum.Health > 0 then -- Моментальный замер дистанции в векторе мира local studsDist = (head.Position - myRoot.Position).Magnitude if studsDist < minDist then target = head minDist = studsDist end end end end return target end -- МОМЕНТАЛЬНАЯ НАВОДКА (0 МИЛЛИСЕКУНД ЗАДЕРЖКИ) RS.RenderStepped:Connect(function() if not (flick or lockOn) then return end local target = getClosestEnemyInstant() if not target then return end -- Мгновенный CFrame-поворот без сглаживания if lockOn then Cam.CFrame = CFrame.lookAt(Cam.CFrame.Position, target.Position) end if flick and UIS:IsMouseButtonPressed(Enum.UserInputType.MouseButton1) then local oldCF = Cam.CFrame Cam.CFrame = CFrame.lookAt(Cam.CFrame.Position, target.Position) RS.Heartbeat:Wait() Cam.CFrame = oldCF end end) -- СТАБИЛЬНЫЙ ESP RS.RenderStepped:Connect(function() local plrs = P:GetPlayers() for i = 1, #plrs do local p = plrs[i] if p ~= LP and p.Character and p.Character:FindFirstChildOfClass("Humanoid") and p.Character.Humanoid.Health > 0 then local currentEsp = p.Character:FindFirstChild("HisokaESP") if esp then if not currentEsp then local hl = Instance.new("Highlight") hl.Name = "HisokaESP" hl.FillColor = Color3.fromRGB(255, 0, 127) hl.OutlineColor = Color3.fromRGB(255, 255, 255) hl.FillTransparency = 0.4 hl.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop hl.Parent = p.Character end else if currentEsp then currentEsp:Destroy() end end end end end) -- КНОПКИ УПРАВЛЕНИЯ local btnFl, btnLk, btnEs btnFl = addOpt("Флик Аимбот (ЛКМ): ВЫКЛ", 0, function() flick = not flick FOV.Visible = (flick or lockOn) btnFl.Text = flick and "⚡ Флик Аимбот: ВКЛ" or "⚡ Флик Аимбот (ЛКМ): ВЫКЛ" btnFl.TextColor3 = flick and Color3.fromRGB(0, 255, 150) or Color3.fromRGB(240, 240, 240) end) btnLk = addOpt("Постоянный Аимлок: ВЫКЛ", 32, function() lockOn = not lockOn FOV.Visible = (flick or lockOn) btnLk.Text = lockOn and "⚡ Аимлок: АКТИВЕН" or "⚡ Постоянный Аимлок: ВЫКЛ" btnLk.TextColor3 = lockOn and Color3.fromRGB(0, 255, 150) or Color3.fromRGB(240, 240, 240) end) btnEs = addOpt("ВХ через стены (ESP): ВЫКЛ", 64, function() esp = not esp btnEs.Text = esp and "⚡ ВХ через стены: ВКЛ" or "⚡ ВХ через стены (ESP): ВЫКЛ" btnEs.TextColor3 = esp and Color3.fromRGB(0, 255, 150) or Color3.fromRGB(240, 240, 240) end) addOpt("Радиус круга FOV (+50)", 96, function() fovRad = fovRad + 50 FOV.Radius = fovRad end) addOpt("Сбросить FOV (150)", 128, function() fovRad = 150 FOV.Radius = fovRad end) addOpt("Полностью закрыть чит", 160, function() FOV:Destroy() flick, esp, lockOn = false, false, false task.wait(0.1) G:Destroy() end) -- ЛОГИКА АВТОРИЗАЦИИ B.MouseButton1Click:Connect(function() if In.Text == "HISOKA" then A.Visible = false T.Text = " ♠️ HISOKA HUB | Запущено" F.Visible = true else In.Text = "" In.PlaceholderText = "НЕВЕРНЫЙ ПАРОЛЬ!" end end)