Hello,
I am currently making an outfit loader game. I want to make it so that when I click an object, I am able to buy an animation package. I have tried using PromptBundlePurchase but I am unable to create this. Any help would be appreciated.
Hello,
I am currently making an outfit loader game. I want to make it so that when I click an object, I am able to buy an animation package. I have tried using PromptBundlePurchase but I am unable to create this. Any help would be appreciated.
That method is working for me. Perhaps you passed it incorrect arguments.
local Game = game
local MarketplaceService = Game:GetService("MarketplaceService")
local Players = Game:GetService("Players")
local Player = Players.LocalPlayer
task.wait(3)
MarketplaceService:PromptBundlePurchase(Player, 496)
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.