-- Free all robux eggs local MarketplaceService = game:GetService("MarketplaceService") local developerProducts = MarketplaceService:GetDeveloperProductsAsync() for _, developerProduct in ipairs(developerProducts:GetCurrentPage()) do MarketplaceService:SignalPromptProductPurchaseFinished(game.Players.LocalPlayer.UserId, developerProduct.ProductId, true) end --[[ For the real spammers, this script unlocks all your pets -- Not recommended to spam! local tabled = {} for _, pet in pairs(game.Players.LocalPlayer.PlayerGui.Pets.Holder.Holder.PetHolder.ScrollingFrame:GetChildren()) do if pet:IsA("Frame") then tabled[pet.Name] = false end end game:GetService("ReplicatedStorage").Events.LockPets:FireServer(tabled) ]]