local Players = game:GetService("Players") local MarketplaceService = game:GetService("MarketplaceService") local UserInputService = game:GetService("UserInputService") local LocalPlayer = Players.LocalPlayer local ProductData = { {Name = "Fake Dono 5", ID = 1507311385}, {Name = "Fake Dono 10", ID = 1507311384}, {Name = "Fake Dono 20", ID = 1507311383}, {Name = "Fake Dono 50", ID = 1507311382}, {Name = "Fake Dono 100", ID = 1507311381}, {Name = "Fake Dono 200", ID = 1507311387}, {Name = "Fake Dono 500", ID = 1507311386}, {Name = "Fake Dono 1K", ID = 1507311377}, {Name = "Fake Dono 2K", ID = 1507311376}, {Name = "Fake Dono 5K", ID = 1507311374}, {Name = "Fake Dono 10K", ID = 1507311375}, {Name = "Fake Dono 20K", ID = 1507311380}, {Name = "Fake Dono 50K", ID = 1507311378}, {Name = "Fake Dono 100K", ID = 1507311371} } local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local Title = Instance.new("TextLabel") local CloseButton = Instance.new("TextButton") local ButtonContainer = Instance.new("Frame") local UIGridLayout = Instance.new("UIGridLayout") ScreenGui.Name = "easter.egg" ScreenGui.Parent = LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ResetOnSpawn = false MainFrame.Name = "MainFrame" MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) MainFrame.Position = UDim2.new(0.5, -165, 0.5, -225) MainFrame.Size = UDim2.new(0, 330, 0, 460) MainFrame.Active = true MainFrame.Draggable = true local MainCorner = Instance.new("UICorner") MainCorner.CornerRadius = UDim.new(0, 10) MainCorner.Parent = MainFrame Title.Name = "Title" Title.Parent = MainFrame Title.BackgroundTransparency = 1 Title.Position = UDim2.new(0, 15, 0, 0) Title.Size = UDim2.new(0, 200, 0, 50) Title.Font = Enum.Font.GothamBold Title.Text = "Dyna is cooked" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.TextSize = 16 Title.TextXAlignment = Enum.TextXAlignment.Left CloseButton.Name = "CloseButton" CloseButton.Parent = MainFrame CloseButton.BackgroundColor3 = Color3.fromRGB(220, 53, 69) CloseButton.Position = UDim2.new(1, -35, 0, 12) CloseButton.Size = UDim2.new(0, 25, 0, 25) CloseButton.Font = Enum.Font.GothamBold CloseButton.Text = "X" CloseButton.TextColor3 = Color3.fromRGB(255, 255, 255) CloseButton.TextSize = 14 local CloseCorner = Instance.new("UICorner") CloseCorner.CornerRadius = UDim.new(0, 5) CloseCorner.Parent = CloseButton CloseButton.MouseButton1Click:Connect(function() ScreenGui:Destroy() end) ButtonContainer.Name = "ButtonContainer" ButtonContainer.Parent = MainFrame ButtonContainer.BackgroundTransparency = 1 ButtonContainer.Position = UDim2.new(0, 10, 0, 60) ButtonContainer.Size = UDim2.new(1, -20, 1, -70) UIGridLayout.Parent = ButtonContainer UIGridLayout.SortOrder = Enum.SortOrder.LayoutOrder UIGridLayout.CellPadding = UDim2.new(0, 10, 0, 10) UIGridLayout.CellSize = UDim2.new(0, 145, 0, 42) for i = 1, #ProductData do local data = ProductData[i] local Button = Instance.new("TextButton") local ButtonCorner = Instance.new("UICorner") Button.Name = "Button_" .. i Button.Parent = ButtonContainer Button.LayoutOrder = i Button.BackgroundColor3 = Color3.fromRGB(50, 50, 50) Button.Font = Enum.Font.GothamMedium Button.Text = data.Name Button.TextColor3 = Color3.fromRGB(255, 255, 255) Button.TextSize = 13 Button.AutoButtonColor = true ButtonCorner.CornerRadius = UDim.new(0, 6) ButtonCorner.Parent = Button Button.MouseButton1Click:Connect(function() MarketplaceService:SignalPromptProductPurchaseFinished(LocalPlayer.UserId, data.ID, true) print("Fired Product: " .. data.Name .. " (ID: " .. data.ID .. ")") end) end UserInputService.InputBegan:Connect(function(input, gameProcessed) if not gameProcessed and input.KeyCode == Enum.KeyCode.LeftControl then MainFrame.Visible = not MainFrame.Visible end end)