local Players = game:GetService("Players") local player = Players.LocalPlayer local piggyFolder = workspace:WaitForChild("PiggyNPC") local screenGui = Instance.new("ScreenGui", player:WaitForChild("PlayerGui")) screenGui.Name = "PiggyRemoverGUI" local mainFrame = Instance.new("Frame", screenGui) mainFrame.Size = UDim2.new(0, 280, 0, 140) mainFrame.Position = UDim2.new(0.5, -140, 0.5, -70) mainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) mainFrame.BackgroundTransparency = 0.5 mainFrame.AnchorPoint = Vector2.new(0.5, 0.5) mainFrame.ClipsDescendants = true mainFrame.BorderSizePixel = 0 local title = Instance.new("TextLabel", mainFrame) title.Size = UDim2.new(1, 0, 0, 40) title.BackgroundTransparency = 1 title.Text = "PiggyNPC Remover 🔥" title.Font = Enum.Font.GothamBlack title.TextColor3 = Color3.fromRGB(255, 100, 100) title.TextScaled = true local removeBtn = Instance.new("TextButton", mainFrame) removeBtn.Size = UDim2.new(0.8, 0, 0, 50) removeBtn.Position = UDim2.new(0.1, 0, 0.5, 0) removeBtn.BackgroundColor3 = Color3.fromRGB(60, 60, 60) removeBtn.Text = "Delete PiggyNPC Folder Content" removeBtn.Font = Enum.Font.GothamBold removeBtn.TextColor3 = Color3.fromRGB(255, 255, 255) removeBtn.TextScaled = true removeBtn.BorderSizePixel = 0 removeBtn.AutoButtonColor = true removeBtn.MouseButton1Click:Connect(function() for _, obj in pairs(piggyFolder:GetChildren()) do obj:Destroy() end end)