#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)
idk i dont know what caused this.
** You are now Level 2! **
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
** You are now Level 3! **
another reason maybe u should use :PromptProductPurchase(), :PromptGamepassPurchase() or :PromptPurchase() in different cases?
"idk i dont know" - english at it finest
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)
get id here
oh ok tysm