Anyways, what I am trying to make is a script that if they have the specific game pass, they can have infinite stamina, but the stamina value is located in the backpack, under a local script named globalfunctions. The problem is that for some reason it cant seem to find "Backpack".
01 | local passId = 318909278 |
02 |
03 | function isAuthenticated(player) |
04 | return game:GetService( "GamePassService" ):PlayerHasPass(player, passId) |
05 | end |
06 |
07 | game.Players.PlayerAdded:connect( function (plr) |
08 | if isAuthenticated(plr) then |
09 | repeat wait() until plr.Backpack.GlobalFunctions.Stamina |
10 | spawn( function () |
11 | while wait() do |
12 | plr.Backpack.GlobalFunctions.Stamina.Value = 100 |
13 | end |
14 | end ) |
15 | end |
16 | end ) |
Anyways, output says this: http://prntscr.com/91oxpt
Well yeah, the code can't find the backpack. If I had to guess, I think the code checks for the backpack way too early, that the backpack wasn't loaded yet.
All I did was added a wait on finding the backpack:
01 | local passId = 318909278 |
02 |
03 | function isAuthenticated(player) |
04 | return game:GetService( "GamePassService" ):PlayerHasPass(player, passId) |
05 | end |
06 |
07 | game.Players.PlayerAdded:connect( function (plr) |
08 | if isAuthenticated(plr) then |
09 | repeat wait() until plr:WaitForChild( 'Backpack' ).GlobalFunctions.Stamina |
10 | spawn( function () |
11 | while wait() do |
12 | plr.Backpack.GlobalFunctions.Stamina.Value = 100 |
13 | end |
14 | end ) |
15 | end |
16 | end ) |