This is in a localscript, this is also my first time actually making a gamepass, i never actually cared for it in the past, so if anyone can help me it'd be great, i am having problems with it:
1 | local pewdiepass = 599082309 |
2 | local gpserv = game:GetService( "GamePassService" ) |
3 |
4 | if gpserv:PlayerHasPass(plr, pewdiepass) then |
5 | subs.Value = subs.Value + 785 |
6 | money.Value = money.Value + 1250 |
7 | end |
this is the error code:
Game passes can only be queried by a Script running on a ROBLOX game server
You're going to want to run this on the server, as opposed to the client, so put this in a server script. Also, you never defined "plr", "subs", or "money" and it'd be much easier if you used a .PlayerAdded function
01 | local passId = 599082309 |
02 | local gps = game:GetService( 'GamePassService' ) |
03 |
04 | game.Players.PlayerAdded:connect( function (player) |
05 | local subs --Define this here |
06 | local money --Define this here |
07 |
08 | if gps:PlayerHasPass(player, passId) then |
09 | subs.Value = subs.Value + 785 |
10 | money.Value = money.Value + 1250 |
11 | end |
12 | end ) |