yea I'm making an obby right now and I really wanna know how to make a gamepass for both a speed and gravity coil. If u have an answer or a script sample which I can use to practice my coding then that would be great! Thanks!
Please read the Roblox Developer hub before answering this question. And plus theres a special service called MarketPlaceService this service is basically a service that allows you to make gamepasses and sell them.
More info visit: https://developer.roblox.com/en-us/api-reference/class/MarketplaceService
A service you can use to check if someone owns a gamepass is called "MarketplaceService"
And a function that MarketplaceService has is called "UserOwnsGamePassAsync"
In the first argument, you add the player's userID to check, in the second argument, you add the gamepass ID to check
Example:
1 | local player = game.Players:GetChildren() [ math.random( 1 , #game.Players:GetChildren()) ] -- Checks a random player, change this localvalue so it is correct. |
2 |
3 | local MarketplaceService = game:GetService( "MarketplaceService" ) |
4 |
5 | if MarketplaceService:UserOwnsGamePassAsync(player.UserId, 2296901 ) then -- change the numbers to a gamepass id |
6 | print (player.Name .. " owns the gamepass!" ) |
7 | else |
8 | print (player.Name .. " does not own the gamepass!" ) |
9 | end |