Hey guys. So, I'm not at all new to gamepasses, but for whatever reason it may be, the game claims I do not own the gamepass I created myself (and the page says I own it aswell!)
I made a print to show me if I have it or not, and when playing the game, it prints the "doesnt own", even though, very clearly, I do own it.
Is this a scripting error?
01 | id = mypassidwenthere |
02 | game.Players.PlayerAdded:connect( function (plr) |
03 | repeat wait() until plr.Character |
04 | if game:GetService( "GamePassService" ):PlayerHasPass(plr, id) then |
05 | local tool = script:FindFirstChild( "Spear" ) |
06 | tool:Clone().Parent = plr.Backpack |
07 | tool:Clone().Parent = plr.StarterGear |
08 | print ( "Given" ) |
09 | else |
10 | print ( "doesnt own" ) |
11 | end |
12 | end ) |
PlayerHasPass
is deprecated; use UserOwnsGamepassAsync
instead. My buddy vissequ made a script for this purpose and he's welcome to share it with anyone.
01 | local MarketplaceService = game:GetService( "MarketplaceService" ) |
02 | local Players = game:GetService( "Players" ) |
03 |
04 | local gamePassID = --YourGamePassIdHere |
05 |
06 | function onPlayerSpawned(player) |
07 |
08 | local hasPass = false |
09 |
10 | -- Check if the player already owns the game pass |
11 | local success, message = pcall ( function () |
12 | hasPass = MarketplaceService:UserOwnsGamePassAsync(player.userId, gamePassID) |
13 | print ( "Has Game Pass" ) |
14 | end ) |
15 |
(This Script is confirmed working, so If it still doesn't work, it's on you.) P.S. I highly recommend you don't put your tools inside your script, because that's what you're refrencing in your script, and you put them in ReplicatedStorage. Also, This script won't run if it isn't in Workspace or ServerScriptService, as a Server Script.