Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How can I sell items in-game like Shirts,Pants, and T-shirts?

Asked by 9 years ago

I did try to find my answer of ROBLOX Wiki. Nothing showed.

1 answer

Log in to vote
3
Answered by
Tuneable 100
9 years ago

There is actually a specific service for things like this called MarketplaceService.

http://wiki.roblox.com/index.php?title=MarketplaceService

The specific method you want here is PromptPurchase(Player, AssetId).

Example code:

local function RequestPurchase(Player, AssetId)
game:GetService("MarketplaceService"):PromptPurchase(Player, AssetId)
end
0
Ah! Now I see. blackstaro51 -2 — 9y
Ad

Answer this question