Your script should have "PromptGamepassPurchase" or "PromptProductPurchase" depending on if it is a gamepass or a dev product. Here is your fixed script:
Gamepass script:
1 | local button = script.Parent |
4 | button.MouseButton 1 Click:Connect( function (player) |
5 | game:GetService( "MarketplaceService" ):PromptGamePassPurchase(player, devid) |
Dev Product:
1 | local button = script.Parent |
4 | button.MouseButton 1 Click:Connect( function (player) |
5 | game:GetService( "MarketplaceService" ):PromptProductPurchase(player, devid) |
Accept this answer if it helped you!