#hi guys does anyone knows how i can fix error that says my acc is not charged it is going in my game

11 messages · Page 1 of 1 (latest)

bold lance
vestal snow
thorny bisonBOT
#

studio** You are now Level 2! **studio

toxic ibex
#

the reason maybe you're using asset id (which can't be used to make prompt) to Prompt purchase the Dev Product.
there're 2 id of a dev product: Asset ID & Product ID
to solve it, u need the product id one, find it on image

thorny bisonBOT
#

studio** You are now Level 3! **studio

toxic ibex
#

another reason maybe u should use :PromptProductPurchase(), :PromptGamepassPurchase() or :PromptPurchase() in different cases?

bold lance
#

"idk i dont know" - english at it finest

toxic ibex
#
local Market = game:GetService("MarketplaceService")
local id = <your_id> (can be DevProduct, Gamepass or etc)

some_event:Connect(function(player)
  --For Dev Product
  Market:PromptProductPurchase(player, id)
  --Gamepass use this
  Market:PromptGamePassPurchase(player, id)
  --For AssetId (clothes,...)
  Market:PromptPurchase(player, id)
end)
vestal snow
#

oh ok tysm