How to make an if statement in a gamepass script?
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:
01 | game.Players.PlayerAdded:Connect( function (player) |
02 | player.CharacterAdded:Connect( function (character) |
03 | if game.MarketplaceService:PlayerOwnsAsset(player.UserId, 7187215 ) then |
05 | game.Players.PlayerAdded:connect( function (p) |
06 | p.CharacterAdded:connect( function (c) |
08 | c.Humanoid.Died:connect( function () |
12 | local cv = c.Humanoid:findFirstChild( "creator" ) |
23 | k.leaderstats.Money.Value = k.leaderstats.Monaey.Value+ 4 |
28 | game.Players.PlayerAdded:connect( function (p) |
30 | p.CharacterAdded:connect( function (c) |
32 | c.Humanoid.Died:connect( function () |
34 | local cv = c.Humanoid:findFirstChild( "creator" ) |
42 | k.leaderstats.Money.Value = k.leaderstats.Money.Value+ 2 |
The "--" is because someone helped me with it.
Thanks if anyone can help!