Gamepass script not working?
This game pass script is connected to a GUI text button and the function of it is to change the players profession to Bank Staff if they have the game pass and it seems not to change my profession and yes it is in a LocalScript! If someone could help fix the script and explain what I did wrong that would be helpful.
01 | local player = game:GetService( "Players" ).LocalPlayer |
02 | local GamePassService = game:GetService( 'GamePassService' ) |
03 | local GamePassId = 416231639 |
07 | if GamePassService:PlayerHasPass(player, GamePassId) then |
08 | player.leaderstats.WantedLevel.Value = 0 |
09 | player.leaderstats.Profession.Value = "Bank Staff" |
10 | script.Parent.Parent.Parent.AppliedGood.Visible = true |
11 | script.Parent.Parent.Visible = false |
12 | else script.Parent.Parent.Parent.AppliedError.Visible = true |
13 | script.Parent.Parent.Visible = false |
17 | script.Parent.MouseButton 1 Down:connect(Good) |