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

How to make an if statement in a gamepass script?

Asked by
zomspi 541 Moderation Voter
5 years ago

How might I make a gamepass script so if the player owns the gamepass they get 4 money on kill and if they don't own the gamepass they get 2. I tried this but it didn't work:

01game.Players.PlayerAdded:Connect(function(player)
02player.CharacterAdded:Connect(function(character)
03if game.MarketplaceService:PlayerOwnsAsset(player.UserId, 7187215) then
04 
05 game.Players.PlayerAdded:connect(function(p)
06 p.CharacterAdded:connect(function(c)
07 
08  c.Humanoid.Died:connect(function()
09 
10 
11 
12local cv = c.Humanoid:findFirstChild("creator")
13 
14       if cv
15 
View all 65 lines...

The "--" is because someone helped me with it. Thanks if anyone can help!

1 answer

Log in to vote
0
Answered by 5 years ago

Take a look at this resource. https://developer.roblox.com/en-us/articles/Badges-Special-Game-Awards

Badges are not assets, they have their own special service :)

Ad

Answer this question