How would i script a script so that once i say "Donate 2" in the normal chat then a developer product would show up on the player who said it so they can buy it?
id = 123456789 --Id of product game.Players.PlayerAdded:Connect(function(player) player.Chatted:Connect(function(msg) if msg == "Donate 2" then game:GetService("MarketplaceService"):PromtProductPurchase(player, id) end end) end)