-- GUI K00PKIDDF1!!🤑🤑 (MODO CUADRO / GRID) local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local Title = Instance.new("TextLabel") local ScrollFrame = Instance.new("ScrollingFrame") local GridLayout = Instance.new("UIGridLayout") -- Configuración de la Pantalla ScreenGui.Name = "K00pKidGridMenu" ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ResetOnSpawn = false -- Cuadro Principal (Más ancho para que parezca un cuadro real) MainFrame.Name = "MainFrame" MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) MainFrame.Position = UDim2.new(0.3, 0, 0.3, 0) -- Centrado un poco más MainFrame.Size = UDim2.new(0, 450, 0, 350) -- Ancho de 450 para que quepan 2 botones por fila MainFrame.Active = true MainFrame.Draggable = true local FrameCorner = Instance.new("UICorner") FrameCorner.CornerRadius = UDim.new(0, 15) FrameCorner.Parent = MainFrame -- Título Title.Name = "Title" Title.Parent = MainFrame Title.Size = UDim2.new(1, 0, 0, 50) Title.Text = "K00PKID!! 🤑 PANEL" Title.TextColor3 = Color3.fromRGB(0, 255, 0) Title.TextSize = 24 Title.Font = Enum.Font.SourceSansBold Title.BackgroundTransparency = 1 -- Contenedor con Scroll ScrollFrame.Name = "ScrollFrame" ScrollFrame.Parent = MainFrame ScrollFrame.BackgroundTransparency = 1 ScrollFrame.Position = UDim2.new(0, 10, 0, 60) ScrollFrame.Size = UDim2.new(1, -20, 1, -70) ScrollFrame.CanvasSize = UDim2.new(0, 0, 0, 500) ScrollFrame.ScrollBarThickness = 6 ScrollFrame.ScrollBarImageColor3 = Color3.fromRGB(0, 255, 0) -- CONFIGURACIÓN DE CUADRÍCULA (GRID) GridLayout.Parent = ScrollFrame GridLayout.CellSize = UDim2.new(0, 200, 0, 50) -- Cada botón mide 200x50 GridLayout.CellPadding = UDim2.new(0, 10, 0, 10) -- Espacio entre botones GridLayout.HorizontalAlignment = Enum.HorizontalAlignment.Center GridLayout.SortOrder = Enum.SortOrder.LayoutOrder -- Función para crear botones local function crearBoton(nombre, funcion) local btn = Instance.new("TextButton") btn.Name = nombre btn.Parent = ScrollFrame btn.BackgroundColor3 = Color3.fromRGB(0, 180, 0) btn.Text = nombre btn.TextColor3 = Color3.fromRGB(0, 0, 0) btn.Font = Enum.Font.SourceSansBold btn.TextSize = 16 local btnCorner = Instance.new("UICorner") btnCorner.CornerRadius = UDim.new(0, 8) btnCorner.Parent = btn btn.MouseButton1Click:Connect(funcion) end --- --- --- --- --- --- --- --- --- --- --- --- --- BOTONES REGISTRADOS (EN CUADRO) --- --- --- --- --- --- --- --- --- --- --- --- --- crearBoton("Screamer 1", function() local imagenID = "rbxassetid://79233602435520" local sonidoID = "rbxassetid://132225475210716" for _, p in pairs(game.Players:GetPlayers()) do local pGui = p:FindFirstChild("PlayerGui") if pGui then local gui = Instance.new("ScreenGui", pGui) gui.IgnoreGuiInset = true local img = Instance.new("ImageLabel", gui) img.Size = UDim2.new(1,0,1,0) img.Image = imagenID img.BackgroundTransparency = 1 local s = Instance.new("Sound", pGui) s.SoundId = sonidoID s.Volume = 10 s:Play() task.delay(9, function() if gui then gui:Destroy() end if s then s:Destroy() end end) end end end) crearBoton("Screamer Final", function() local imagenID = "rbxassetid://101924550927323" local sonidoID = "rbxassetid://132225475210716" for _, p in pairs(game.Players:GetPlayers()) do local pGui = p:FindFirstChild("PlayerGui") if pGui then local gui = Instance.new("ScreenGui", pGui) gui.IgnoreGuiInset = true local imagen = Instance.new("ImageLabel", gui) imagen.Size = UDim2.new(1, 0, 1, 0) imagen.Image = imagenID imagen.BackgroundTransparency = 1 local sonido = Instance.new("Sound", pGui) sonido.SoundId = sonidoID sonido.Volume = 10 sonido:Play() task.delay(9, function() if gui then gui:Destroy() end if sonido then sonido:Destroy() end end) end end end) crearBoton("Mapa Total", function() local miID = "rbxassetid://99821917264288" for _, e in pairs(game.Workspace:GetDescendants()) do if e:IsA("BasePart") then for _, cara in pairs({"Front", "Back", "Left", "Right", "Top", "Bottom"}) do local d = Instance.new("Decal", e) d.Texture = miID d.Face = Enum.NormalId[cara] end end end end) crearBoton("Cubrir Todo", function() local miID = "rbxassetid://71480832180639" for _, elemento in pairs(game.Workspace:GetDescendants()) do if elemento:IsA("BasePart") then for _, cara in pairs({"Front", "Back", "Left", "Right", "Top", "Bottom"}) do local decal = Instance.new("Decal", elemento) decal.Texture = miID decal.Face = Enum.NormalId[cara] decal.Parent = elemento end end end end) crearBoton("Cielo Maestro", function() local L = game:GetService("Lighting") local s = L:FindFirstChildOfClass("Sky") or Instance.new("Sky", L) local id = "rbxassetid://99821917264288" s.SkyboxBk = id s.SkyboxDn = id s.SkyboxFt = id s.SkyboxLf = id s.SkyboxRt = id s.SkyboxUp = id end) crearBoton("Cielo Personal", function() local Lighting = game:GetService("Lighting") local sky = Lighting:FindFirstChildOfClass("Sky") or Instance.new("Sky", Lighting) local id = "rbxassetid://71480832180639" sky.SkyboxBk = id sky.SkyboxDn = id sky.SkyboxFt = id sky.SkyboxLf = id sky.SkyboxRt = id sky.SkyboxUp = id end) crearBoton("Mapa Arcoíris", function() task.spawn(function() while true do for _, obj in pairs(game.Workspace:GetDescendants()) do if obj:IsA("BasePart") then obj.Color = Color3.new(math.random(), math.random(), math.random()) end end task.wait(0.1) end end) end) crearBoton("Mapa Fuego 🔥", function() for _, obj in pairs(game.Workspace:GetDescendants()) do if obj:IsA("BasePart") then local fire = Instance.new("Fire", obj) fire.Heat = 10 fire.Size = 8 end end end) crearBoton("Audio Heidi", function() local sound = Instance.new("Sound", game:GetService("SoundService")) sound.SoundId = "rbxassetid://100828050594137" sound.Volume = 5 sound:Play() end) print("K00PKID!! 🤑 Menú en formato Cuadro Cargado.")