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

ROBLOX Marketplace Service Error?

Asked by 10 years ago

I have a script that gives you a tool once you buy a developer product from an NPC through the dialog, it worked last month and now that I made minor edits to it, it doesn't want to work. Not sure what's wrong with it. The developer products are set up and everything, so are the ID's. The game doesn't give me back an error report either, it just says "An error has occurred please try again later". Not sure what to do.

01local Service = game:GetService("MarketplaceService");
02local SellItems = {
03 ["Knife"]  = 24271258;
04 ["TrenchGun"] = 24271246;
05 ["Mk-17"] = 24271315;
06 ["Uzi"] = 24271280;
07}
08 
09for Name,Item in pairs(SellItems) do
10 local Choice = script.Choice1:Clone();
11 Choice.Name = Name
12 Choice.UserDialog = Name
13 Choice.ResponseDialog = "Don't give away my location!";
14 Choice.Parent = script.Parent;
15end
View all 48 lines...
0
Well, well, well.. We meet again.. Do you own those developer products? If not and it's your game, it'll error. Shawnyg 4330 — 10y

Answer this question