Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Gamepass script not working?

Asked by 9 years ago

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.

01local player = game:GetService("Players").LocalPlayer
02local GamePassService = game:GetService('GamePassService')
03local GamePassId = 416231639
04 
05 
06function Good()
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
14  end
15 end
16 
17script.Parent.MouseButton1Down:connect(Good)
2
I'd avoid doing this in a LocalScript. User#6546 35 — 9y
0
Alright I tried still dont work Dark_Dimensions 96 — 9y
0
gamepassservice is depreciated. use marketplaceservice. http://wiki.roblox.com/index.php?title=API:Class/MarketplaceService/PlayerOwnsAsset LostPast 253 — 9y

1 answer

Log in to vote
1
Answered by 8 years ago
01function Good()
02if game.MarketplaceService:PlayerOwnsAsset(player,GamePassId) then
03player.leaderstats.WantedLevel.Value = 0
04    player.leaderstats.Profession.Value = "Bank Staff"
05    script.Parent.Parent.Parent.AppliedGood.Visible = true
06    script.Parent.Parent.Visible = false
07  else
08script.Parent.Parent.Parent.AppliedError.Visible = true
09    script.Parent.Parent.Visible = false
10  end
11 end
Ad

Answer this question