Answered by
4 years ago Edited 4 years ago
You can do this using market place service:
First of all, you need to create your gamepass and you need to make a variable for the service. Get the gamepass id and put it here:
3 | local MarketplaceService = game:GetService( "MarketplaceService" ) |
Then you need to make a prompt to buy it. For example a button. Put a local script inside of a button, like this:
1 | script.Parent.MouseButton 1 Click:Connect( function (player) |
2 | MarketplaceService:PromptGamePassPurchase(player, gamepassId) |
You also need to make that gamepass do something. Create a new script in server script service and create the variables from the top once again. Enter in this code:
1 | game.Players.PlayerAdded:Connect( function (player) |
2 | if MarketplaceSerivice:UserOwnsGamePassAsync(player.UserId, gamepassId) then |
I'm not the best at scripting but I really hope this helps!