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

How can I make a VIP Game Pass?

Asked by 10 years ago

This should be a pretty easy answer for you that know how to script fairly well.

Before my BC ran out I used the old fashion VIP shirt for VIP, which users then had to buy to access the VIP room.

Now that I have BC again I would like to make a game pass users can buy which then automatically gives them VIP.

I also had another question regarding this; if I make a VIP game pass is there any way I can make a GUI that teleports people to the VIP room if they have the game pass?

Personally I think the VIP doors are old and outdated.

Thank you for your help

1 answer

Log in to vote
1
Answered by 10 years ago
local player=Player
local assetId=12345678

if game:GetService("MarketPlaceService"):PlayerOwnsAsset(player,assetId)then
    -- award VIP privileges to player for owning specified asset
end
Ad

Answer this question