of     1   

ItsWayne
#183357970Thursday, February 11, 2016 2:37 AM GMT

So I've been trying to make it so that when you click on a surface GUI button it prompts a purchase of a dev product and gives you an in-game currency after you buy the dev product. I've been trying to do that for the past two weeks but I can't figure it out. Could anyone help me out?
ItsWayne
#183358319Thursday, February 11, 2016 2:42 AM GMT

;-;
ItsWayne
#183361147Thursday, February 11, 2016 3:28 AM GMT

Bump
cofunction
#183361258Thursday, February 11, 2016 3:30 AM GMT

Just call the Button1Down event client sided via a local script. local button = game.Workspace.Part.SurfaceGui.TextButton local player = game.Players.LocalPlayer button.MouseButton1Down:connect(function() --Code end) http://wiki.roblox.com/index.php?title=API:Class/MarketplaceService

    of     1