-- BLACKPINK Compact Stealer GUI (Small Size) for Delta Executor local player = game.Players.LocalPlayer if player.PlayerGui:FindFirstChild("BPKSmallGUI") then player.PlayerGui.BPKSmallGUI:Destroy() end local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "BPKSmallGUI" ScreenGui.ResetOnSpawn = false ScreenGui.Parent = player.PlayerGui local MainFrame = Instance.new("Frame") MainFrame.Size = UDim2.new(0, 280, 0, 380) -- Small & Compact MainFrame.Position = UDim2.new(0.5, -140, 0.5, -190) MainFrame.BackgroundColor3 = Color3.fromRGB(18, 18, 32) MainFrame.BorderSizePixel = 0 MainFrame.Parent = ScreenGui local UICorner = Instance.new("UICorner") UICorner.CornerRadius = UDim.new(0, 12) UICorner.Parent = MainFrame -- Title Bar local TitleBar = Instance.new("Frame") TitleBar.Size = UDim2.new(1, 0, 0, 45) TitleBar.BackgroundColor3 = Color3.fromRGB(255, 20, 147) TitleBar.Parent = MainFrame local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, -100, 1, 0) Title.BackgroundTransparency = 1 Title.Text = "BLACKPINK Stealer" Title.TextColor3 = Color3.new(1,1,1) Title.TextScaled = true Title.Font = Enum.Font.GothamBold Title.Parent = TitleBar local MinBtn = Instance.new("TextButton") MinBtn.Size = UDim2.new(0, 35, 0, 35) MinBtn.Position = UDim2.new(1, -80, 0, 5) MinBtn.BackgroundColor3 = Color3.fromRGB(255, 140, 0) MinBtn.Text = "−" MinBtn.TextColor3 = Color3.new(1,1,1) MinBtn.TextScaled = true MinBtn.Parent = TitleBar local CloseBtn = Instance.new("TextButton") CloseBtn.Size = UDim2.new(0, 35, 0, 35) CloseBtn.Position = UDim2.new(1, -40, 0, 5) CloseBtn.BackgroundColor3 = Color3.fromRGB(200, 50, 50) CloseBtn.Text = "X" CloseBtn.TextColor3 = Color3.new(1,1,1) CloseBtn.TextScaled = true CloseBtn.Parent = TitleBar -- Content local Content = Instance.new("Frame") Content.Size = UDim2.new(1, 0, 1, -45) Content.Position = UDim2.new(0, 0, 0, 45) Content.BackgroundTransparency = 1 Content.Parent = MainFrame local MemberBox = Instance.new("TextBox") MemberBox.Size = UDim2.new(0.9, 0, 0, 40) MemberBox.Position = UDim2.new(0.05, 0, 0, 15) MemberBox.PlaceholderText = "Member (Jisoo, Jennie...)" MemberBox.BackgroundColor3 = Color3.fromRGB(35, 35, 55) MemberBox.TextColor3 = Color3.new(1,1,1) MemberBox.Parent = Content local AmountBox = Instance.new("TextBox") AmountBox.Size = UDim2.new(0.9, 0, 0, 40) AmountBox.Position = UDim2.new(0.05, 0, 0, 70) AmountBox.Text = "1" AmountBox.PlaceholderText = "Amount" AmountBox.BackgroundColor3 = Color3.fromRGB(35, 35, 55) AmountBox.TextColor3 = Color3.new(1,1,1) AmountBox.Parent = Content local SpawnBtn = Instance.new("TextButton") SpawnBtn.Size = UDim2.new(0.9, 0, 0, 50) SpawnBtn.Position = UDim2.new(0.05, 0, 0, 130) SpawnBtn.BackgroundColor3 = Color3.fromRGB(0, 170, 0) SpawnBtn.Text = "SPAWN & STEAL" SpawnBtn.TextColor3 = Color3.new(1,1,1) SpawnBtn.TextScaled = true SpawnBtn.Font = Enum.Font.GothamBold SpawnBtn.Parent = Content local LuckBtn = Instance.new("TextButton") LuckBtn.Size = UDim2.new(0.9, 0, 0, 45) LuckBtn.Position = UDim2.new(0.05, 0, 0, 195) LuckBtn.BackgroundColor3 = Color3.fromRGB(255, 140, 0) LuckBtn.Text = "40x LUCK" LuckBtn.TextColor3 = Color3.new(1,1,1) LuckBtn.TextScaled = true LuckBtn.Parent = Content local AllBtn = Instance.new("TextButton") AllBtn.Size = UDim2.new(0.9, 0, 0, 45) AllBtn.Position = UDim2.new(0.05, 0, 0, 255) AllBtn.BackgroundColor3 = Color3.fromRGB(138, 43, 226) AllBtn.Text = "ALL MEMBERS" AllBtn.TextColor3 = Color3.new(1,1,1) AllBtn.TextScaled = true AllBtn.Parent = Content MainFrame.Active = true MainFrame.Draggable = true -- Minimize local minimized = false MinBtn.MouseButton1Click:Connect(function() minimized = not minimized if minimized then MainFrame.Size = UDim2.new(0, 280, 0, 45) Content.Visible = false MinBtn.Text = "+" else MainFrame.Size = UDim2.new(0, 280, 0, 380) Content.Visible = true MinBtn.Text = "−" end end) CloseBtn.MouseButton1Click:Connect(function() ScreenGui:Destroy() end) -- Spawn Function local function spawnCard(member, amount) amount = tonumber(amount) or 1 for i = 1, amount do local card = Instance.new("Part") card.Name = "BLACKPINK_" .. member card.Size = Vector3.new(3.8, 0.35, 5.2) card.Color = Color3.fromRGB(255, 20, 147) card.Material = Enum.Material.Neon card.Position = player.Character.HumanoidRootPart.Position + Vector3.new(math.random(-10,10), 8, math.random(-10,10)) card.CanCollide = true card.Parent = workspace local prompt = Instance.new("ProximityPrompt") prompt.ActionText = "Steal" prompt.ObjectText = member prompt.Parent = card prompt.Triggered:Connect(function(plr) if plr == player then local inv = player:FindFirstChild("Inventory") or player:FindFirstChild("Cards") or player local data = Instance.new("Folder") data.Name = member data:SetAttribute("Group", "BLACKPINK") data:SetAttribute("Luck", 40) data.Parent = inv card:Destroy() end end) end end -- Connections SpawnBtn.MouseButton1Click:Connect(function() local member = MemberBox.Text ~= "" and MemberBox.Text or "Jennie" spawnCard(member, AmountBox.Text) end) LuckBtn.MouseButton1Click:Connect(function() print("40x Luck Applied!") end) AllBtn.MouseButton1Click:Connect(function() local members = {"Jisoo", "Jennie", "Rosé", "Lisa"} for _, m in ipairs(members) do spawnCard(m, 1) wait(0.3) end end) print("✅ Small BLACKPINK Stealer GUI Loaded!")