i want to try out how nikilis (Murder mystery maker) did this and i want to put it in my game and in not a good scripter myself :( can anyone please give me a gui i could use?
Yes You Can Do This Line Of Code Or Just Use The Following game:GetService("MarketPlaceService"):PromptPurchase(ID_Here, Character) Or For GUIs (Do this in a local script)
1 | script.Parent.MouseButton 1 Down:connect( function () |
2 | game:getService( "MarketPlaceService" ):PromptPurchase(ID_HERE, LocalPlayer) |
3 | end ) |
and For Bricks
1 | script.Parent.Touched:connect( function () |
2 | game:getService( "MarketPlaceService" ):PromptPurchase(ID_HERE, LocalPlayer) |
3 | end ) |
local productId = Last numbers of the product local player = locate the player
1 | script.Parent.MouseButton 1 Down:connect( function () |
2 | game:GetService( "MarketplaceService" ):PromptPurchase(player, productId, false ) |
3 | print (player.Name .. " has requested to purchase product with product ID " .. productId) |
4 | end ) |
There's a plugin for this, called Store Creator. It's by roblox.
Roblox created a plugin to make adding group gear,hats,shirts,t-shirts into a ingame store easier
The link to the roblox blog post about the plugin can be found here: http://blog.roblox.com/2013/06/this-plugin-makes-creating-in-game-stores-simple/