I've been trying to make a button that only available when the player that have a certain gamepass. I am new to scripting so don't laugh D: . Here's what I have:
1 | local id = 889632521 |
2 |
3 | game.Players.PlayerAdded:connect( function (player) |
4 | if game:GetService( "GamePassService" ):PlayerHasPass(player, id) then |
5 | script.Parent.Visible = true |
6 | else |
7 | script.Parent.Visible = false |
8 | end |
9 | end ) |
If your game is FilteringEnabled
, you should use a local script to toggle the buttons. Also, you can use LocalPlayer
(in the Players
service) if you use local scripts as well. This is a good way to create a reference to the player. Here is how it's done:
1 | local id = 889632521 |
2 | local player = game.Players.LocalPlayer |
3 |
4 | if game:GetService( "MarketplaceService" ):PlayerOwnsAsset(player, id) then -- PlayerOwnsAsset can search for any asset a player owns, including gamepasses. |
5 | script.Parent.Visible = true |
6 | else |
7 | script.Parent.Visible = false |
8 | end |
Any questions? Please leave them in the comments below. Thanks.