of     2   
chevron_rightchevron_rightchevron_right

klojo11
#127205397Monday, March 03, 2014 4:09 PM GMT

What is this and what can it do? Because i dont get it..
Unqees
#127205542Monday, March 03, 2014 4:13 PM GMT

Developer products, like regular game passes, are place-specific, purchasable assets. Unlike game passes however, developer products have the capability to be bought more than once. Developer products are perfect for in-game currency or ammo purchases. Since developer products are place-specific, you must create a place before you can create a developer product. Once you have created your place, it is easy to create products for it. Follow these steps in order to create a product for your place: • Go to the configure page for your place. • On the configuration page, there is a tab with the text "Developer Products". • Click the button that says "Create new". • On the developer product creation page, you must fill in all of the necessary boxes, and then click create. • If you mess up and want to change something later, don't fret! Like all assets, developer products can be edited at any time. • After creating your developer product, ROBLOX will assign it a unique productId. If you forget this number, simply check back on the place configuration page, where all of your developer products should be neatly listed. • Once you create your product, you will have to write some code in order to make it purchasable in your place. This, however is not hard at all! For further reading, see: http://wiki.roblox.com/index.php/Developer_product
SilverDamage
#127490869Friday, March 07, 2014 8:35 PM GMT

dude say how to use it not how to make it... cos its hard to find scripts and that stuff for it
Unqees
#127490976Friday, March 07, 2014 8:36 PM GMT

SilverDamage, what do you mean by asking 'how to use it'?
Spongocardo
#127491774Friday, March 07, 2014 8:48 PM GMT

@Silver It's called researching, many people do this when they are stuck. When life gives you lemons... BURN HIS HOUSE DOWN! >:D
SilverDamage
#128474102Wednesday, March 19, 2014 10:33 PM GMT

i mean that, thre only example of surface gui's, and so i want normal GUI, and plus I wanna have more than 1 product... and I want it to work properly
72Tom72
#128474568Wednesday, March 19, 2014 10:38 PM GMT

You gotta code it yourself. It's just like selling a gamepass, it's got its own code and works just how the individual user codes it to function.
SilverDamage
#128525229Thursday, March 20, 2014 5:28 PM GMT

dude... am no scripter but I already have millions of plans for developer products...
Unqees
#128586760Friday, March 21, 2014 11:00 AM GMT

In order to save anything that may be changed by purchasing products, Data Stores should be used. The example code below features a server-sided script and a client-sided script, and allows the client to click a button to purchase the product: Server-sided code: local MarketplaceService = Game:GetService("MarketplaceService") MarketplaceService.ProcessReceipt = function(receiptInfo) game.Workspace.DisplayScreen.SurfaceGui.TextBox.Text = receiptInfo.PlayerId .. " just bought " .. receiptInfo.ProductId -- ... -- use DataStore to record purchase -- ... return Enum.ProductPurchaseDecision.PurchaseGranted end Client-sided code: local MarketplaceService = Game:GetService("MarketplaceService") local buyButton = game.Workspace.BuyButton.SurfaceGui.TextButton local productId = 13672652 buyButton.MouseButton1Click:connect(function() MarketplaceService:PromptProductPurchase(player, productId) end)
Unqees
#128586813Friday, March 21, 2014 11:02 AM GMT

This is a sample place for the developer product using and scripts. It is not copy locked so you are free to view and copy the code as needed. http://www.roblox.com/Developer-Product-Sample-place?id=147965737
SilverDamage
#128599755Friday, March 21, 2014 5:35 PM GMT

but for normal GUI not surface GUI, do u just edit the surfacegui.textbutton to gui.textbutton?
ancientdanicj
#128599815Friday, March 21, 2014 5:37 PM GMT

Silver, perhaps I can help you. I could script a little example for you to use. =]
Scriptulus
#130491645Saturday, April 12, 2014 4:18 AM GMT

I must admit that the Developer product code given on the wiki is absolutely not user friendly, therefore very unprofessional for a learning wiki. This has happened to a few other things before where Wiki writers wanted to show off how compact they could make their code, then newcomers would spend an hour trying to read the code because it looks like another language. Im bumping this thread because i was looking up dev product stuff and i stumbled upon this. lol.
danieltorres457
#139875707Thursday, July 10, 2014 3:12 PM GMT

I cant add a picture to the product
Justinthunderfist
#157690079Thursday, March 12, 2015 7:08 PM GMT

use an image GUI
Tommytherox
#159673195Wednesday, April 08, 2015 5:26 AM GMT

EASY!!! use free models! search up "Developer Products"
extrabooster
#159909210Saturday, April 11, 2015 6:24 AM GMT

It says on wiki there is a code, but what's the code?
kpmccain
#177571675Friday, November 06, 2015 2:49 PM GMT

I want a donate button Gui but those scripts don't work
kpmccain
#177571728Friday, November 06, 2015 2:52 PM GMT

can you make me a screen gui script for a donation I already have a developer product
Mervely
#182061027Wednesday, January 20, 2016 7:38 PM GMT

Developer products, like regular game passes, are place-specific, purchasable assets. Unlike game passes however, developer products have the capability to be bought more than once. Developer products are perfect for in-game currency or ammo purchases. Since developer products are place-specific, you must create a place before you can create a developer product. Once you have created your place, it is easy to create products for it. Follow these steps in order to create a product for your place: • Go to the configure page for your place. • On the configuration page, there is a tab with the text "Developer Products". • Click the button that says "Create new". • On the developer product creation page, you must fill in all of the necessary boxes, and then click create. • If you mess up and want to change something later, don't fret! Like all assets, developer products can be edited at any time. • After creating your developer product, ROBLOX will assign it a unique productId. If you forget this number, simply check back on the place configuration page, where all of your developer products should be neatly listed. • Once you create your product, you will have to write some code in order to make it purchasable in your place. This, however is not hard at all! For further reading, see: http://wiki.roblox.com/index.php/Developer_product In order to save anything that may be changed by purchasing products, Data Stores should be used. The example code below features a server-sided script and a client-sided script, and allows the client to click a button to purchase the product: Server-sided code: local MarketplaceService = Game:GetService("MarketplaceService") MarketplaceService.ProcessReceipt = function(receiptInfo) game.Workspace.DisplayScreen.SurfaceGui.TextBox.Text = receiptInfo.PlayerId .. " just bought " .. receiptInfo.ProductId -- ... -- use DataStore to record purchase -- ... return Enum.ProductPurchaseDecision.PurchaseGranted end Client-sided code: local MarketplaceService = Game:GetService("MarketplaceService") local buyButton = game.Workspace.BuyButton.SurfaceGui.TextButton local productId = 13672652 buyButton.MouseButton1Click:connect(function() MarketplaceService:PromptProductPurchase(player, productId) end)
rainbow3094
#184434275Saturday, February 27, 2016 11:33 PM GMT

ok, I ###### that too. thanks!##
omaryasm513
#184434821Saturday, February 27, 2016 11:42 PM GMT

I got a hacker on my account and was writing i want 100 robux on my account my friend got crazy and said why and the person said u will die soon and i got scared i swear it happend
jordypresto0418
#185925214Thursday, March 24, 2016 12:18 AM GMT

dude developer products are gamepasses exept you can buy them as many times as you want and if you buy iy you get robux.
peanutbutter4678
#188025396Sunday, April 24, 2016 9:16 PM GMT

Okay. I am an NBC member. I make a 15 robux dev product and someone buys it. How many robux would I get? Will there be a delay?
CorruptedTimes
#191737423Wednesday, June 22, 2016 3:05 AM GMT

Yeah i see what you are saying but it doesn't allow me to make them free. why is that?

    of     2   
chevron_rightchevron_rightchevron_right