---- NINCO MENU | v3.3 (ULTRA FORCE LOAD) local Players = game:GetService("Players") local CoreGui = game:GetService("CoreGui") local RobloxGui = CoreGui:WaitForChild("RobloxGui") -- Carpeta protegida local LocalPlayer = Players.LocalPlayer --== AJUSTES ==-- _G.HitboxSize = 10 _G.HitboxEnabled = false --== BYPASS DEFINITIVO (ANTI-METHOD 0X3) ==-- -- Bloqueamos el error que viste en tu captura local function Protect() local mt = getrawmetatable(game) setreadonly(mt, false) local old = mt.__namecall mt.__namecall = newcclosure(function(self, ...) local method = getnamecallmethod() if method == "Kick" or method == "kick" then return nil end return old(self, ...) end) setreadonly(mt, true) end pcall(Protect) --== HITBOXES AZUL TRANSPARENTE ==-- task.spawn(function() while task.wait(0.5) do pcall(function() for _, p in pairs(Players:GetPlayers()) do if p ~= LocalPlayer and p.Character then local hrp = p.Character:FindFirstChild("HumanoidRootPart") if hrp then if _G.HitboxEnabled then hrp.Size = Vector3.new(_G.HitboxSize, _G.HitboxSize, _G.HitboxSize) hrp.Transparency = 0.7 -- Azul transparente como pediste hrp.BrickColor = BrickColor.new("Toothpaste") hrp.Material = Enum.Material.ForceField hrp.CanCollide = false else hrp.Size = Vector3.new(2, 2, 1) hrp.Transparency = 1 end end end end end) end end) --== CREACIÓN FORZADA DEL MENÚ ==-- local function CreateUI() -- Eliminamos rastros anteriores for _, v in pairs(RobloxGui:GetChildren()) do if v.Name == "NincoFinal" then v:Destroy() end end local sg = Instance.new("ScreenGui", RobloxGui) sg.Name = "NincoFinal" sg.IgnoreGuiInset = true -- Para que no se desfase la posición -- Botón de Apertura local toggle = Instance.new("TextButton", sg) toggle.Size = UDim2.new(0, 110, 0, 35) toggle.Position = UDim2.new(0, 10, 0, 50) -- Un poco más abajo para evitar el menú de Roblox toggle.Text = "NINCO MENU"; toggle.BackgroundColor3 = Color3.fromRGB(30, 30, 30) toggle.TextColor3 = Color3.new(1, 1, 1); toggle.Font = Enum.Font.GothamBold Instance.new("UICorner", toggle) -- Panel local main = Instance.new("Frame", sg) main.Size = UDim2.new(0, 240, 0, 200) main.Position = UDim2.new(0.5, -120, 0.5, -100) -- Centrado main.BackgroundColor3 = Color3.fromRGB(25, 25, 25) main.Visible = true; main.Active = true; main.Draggable = true Instance.new("UICorner", main) toggle.MouseButton1Click:Connect(function() main.Visible = not main.Visible end) -- Título local t = Instance.new("TextLabel", main) t.Size = UDim2.new(1, 0, 0, 40); t.Text = "NINCO | BETTER MOVIE?"; t.TextColor3 = Color3.fromRGB(0, 255, 150) t.Font = Enum.Font.GothamBold; t.BackgroundTransparency = 1 -- Botón ON/OFF local hb = Instance.new("TextButton", main) hb.Size = UDim2.new(0.9, 0, 0, 45); hb.Position = UDim2.new(0.05, 0, 0, 50) hb.Text = "HITBOX: OFF"; hb.BackgroundColor3 = Color3.fromRGB(45, 45, 45) hb.TextColor3 = Color3.new(1, 1, 1); Instance.new("UICorner", hb) hb.MouseButton1Click:Connect(function() _G.HitboxEnabled = not _G.HitboxEnabled hb.Text = "HITBOX: " .. (_G.HitboxEnabled and "ON" or "OFF") hb.TextColor3 = _G.HitboxEnabled and Color3.fromRGB(0, 255, 255) or Color3.new(1, 1, 1) end) -- Selector de Tamaño local sLbl = Instance.new("TextLabel", main) sLbl.Size = UDim2.new(1, 0, 0, 30); sLbl.Position = UDim2.new(0, 0, 0, 100) sLbl.Text = "SIZE: " .. _G.HitboxSize; sLbl.TextColor3 = Color3.new(1, 1, 1); sLbl.BackgroundTransparency = 1 local add = Instance.new("TextButton", main) add.Size = UDim2.new(0.4, 0, 0, 40); add.Position = UDim2.new(0.05, 0, 0, 140); add.Text = "+ SIZE" add.BackgroundColor3 = Color3.fromRGB(60, 60, 60); add.TextColor3 = Color3.new(1, 1, 1); Instance.new("UICorner", add) add.MouseButton1Click:Connect(function() _G.HitboxSize = _G.HitboxSize + 5; sLbl.Text = "SIZE: " .. _G.HitboxSize end) local sub = Instance.new("TextButton", main) sub.Size = UDim2.new(0.4, 0, 0, 40); sub.Position = UDim2.new(0.55, 0, 0, 140); sub.Text = "- SIZE" sub.BackgroundColor3 = Color3.fromRGB(60, 60, 60); sub.TextColor3 = Color3.new(1, 1, 1); Instance.new("UICorner", sub) sub.MouseButton1Click:Connect(function() if _G.HitboxSize > 5 then _G.HitboxSize = _G.HitboxSize - 5; sLbl.Text = "SIZE: " .. _G.HitboxSize end end) end CreateUI()