-- GUI K00PKIDDF1!!🤑🤑 (NEGRO Y VERDE) local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local Title = Instance.new("TextLabel") local Layout = Instance.new("UIListLayout") -- Configuración de la Pantalla ScreenGui.Name = "K00pKidMenu" ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ResetOnSpawn = false -- Cuadro Principal (TODO NEGRO) MainFrame.Name = "MainFrame" MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0) MainFrame.Position = UDim2.new(0.05, 0, 0.2, 0) MainFrame.Size = UDim2.new(0, 240, 0, 450) -- Aumenté un poco el alto para el nuevo botón MainFrame.Active = true MainFrame.Draggable = true local FrameCorner = Instance.new("UICorner") FrameCorner.CornerRadius = UDim.new(0, 12) FrameCorner.Parent = MainFrame -- Título Title.Name = "Title" Title.Parent = MainFrame Title.Size = UDim2.new(1, 0, 0, 50) Title.Text = "K00PKIDDF1!!🤑🤑" Title.TextColor3 = Color3.fromRGB(0, 255, 0) Title.TextSize = 22 Title.Font = Enum.Font.SourceSansBold Title.BackgroundTransparency = 1 Layout.Parent = MainFrame Layout.Padding = UDim.new(0, 8) Layout.HorizontalAlignment = Enum.HorizontalAlignment.Center Layout.SortOrder = Enum.SortOrder.LayoutOrder -- Función para crear los BOTONES VERDES local function crearBotonVerde(nombre, funcion) local btn = Instance.new("TextButton") btn.Name = nombre btn.Parent = MainFrame btn.Size = UDim2.new(0.9, 0, 0, 50) btn.BackgroundColor3 = Color3.fromRGB(0, 180, 0) btn.Text = nombre btn.TextColor3 = Color3.fromRGB(0, 0, 0) btn.Font = Enum.Font.SourceSansBold btn.TextSize = 18 local btnCorner = Instance.new("UICorner") btnCorner.CornerRadius = UDim.new(0, 8) btnCorner.Parent = btn btn.MouseButton1Click:Connect(funcion) end --- --- --- --- --- --- --- --- --- --- --- --- --- TUS SCRIPTS ASIGNADOS --- --- --- --- --- --- --- --- --- --- --- --- --- -- 1. SCREAMER crearBotonVerde("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) -- 2. MAPA TOTAL crearBotonVerde("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) -- 3. CIELO MAESTRO crearBotonVerde("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) -- 4. LADY LLUVIA crearBotonVerde("Lady Lluvia", function() local ID = "rbxassetid://85431669923140" for _, p in pairs(game.Players:GetPlayers()) do task.spawn(function() while p and p.Parent do if p.Character and p.Character:FindFirstChild("Head") then local bb = Instance.new("BillboardGui", p.Character.Head) bb.Size = UDim2.new(3,0,3,0) local img = Instance.new("ImageLabel", bb) img.Size = UDim2.new(1,0,1,0) img.Image = ID img.BackgroundTransparency = 1 task.spawn(function() for i = 1, 50 do if bb then bb.ExtentsOffset = bb.ExtentsOffset + Vector3.new(0, 0.4, 0) img.ImageTransparency = i/50 end task.wait(0.1) end if bb then bb:Destroy() end end) end task.wait(0.5) end end) end end) -- 5. BOTÓN AUDIO HEIDI (NUEVO) crearBotonVerde("Audio Heidi", function() local SoundID = "rbxassetid://100828050594137" local Volume = 5 local sound = Instance.new("Sound") sound.Name = "HeidiAudio" sound.SoundId = SoundID sound.Volume = Volume sound.Looped = true sound.Parent = game:GetService("SoundService") if not sound.IsPlaying then sound:Play() print("Audio de Heidi ejecutado correctamente.") end game:GetService("StarterGui"):SetCore("SendNotification", { Title = "Audio Cargado", Text = "Reproduciendo Heidi 🤑", Duration = 5 }) end) print("K00PKIDDF1!!🤑🤑 Cargado con Audio Heidi")