How to make a NUKE GUI on Roblox || Roblox Studio ☢☢
So you want to make a nuke gui on roblox. Well today i'll show you how!
Local Script:
MPS = game:GetService("MarketplaceService")
id = DevProductID
local player = game.Players.LocalPlayer
script.Parent.MouseButton1Click:connect(function()
MPS:PromptProductPurchase(player, id)
end)
Script:
local MPS = game:GetService("MarketplaceService")
MPS.ProcessReceipt = function(receiptInfo)
if receiptInfo.ProductId == DevProductID then
game.ReplicatedStorage.Nuke:Clone().Parent = game.Workspace
return Enum.ProductPurchaseDecision.PurchaseGranted
end
end
subscibe xD