Well, you needed some more "ends" and closed ends for the functions.... I think there's a ton of redundancy here and maybe this code should be reorganized a bit.. You're setting up character added events 3 times.... all nested within a player added event... This will at least get your script running without an error, but not sure if it works, otherwise... Notice my comments to help figure out the puzzle of what was wrong.. and the formatting...
01 | game.Players.PlayerAdded:Connect( function (player) |
03 | player.CharacterAdded:Connect( function (character) |
05 | if game.MarketplaceService:PlayerOwnsAsset(player, 7187215 ) then |
07 | game.Players.PlayerAdded:connect( function (p) |
08 | p.CharacterAdded:connect( function (c) |
10 | c.Humanoid.Died:connect( function () |
14 | local cv = c.Humanoid:findFirstChild( "creator" ) |
25 | endk.leaderstats.Money.Value = k.leaderstats.Money.Value+ 4 |
30 | game.Players.PlayerAdded:connect( function (p) |
32 | p.CharacterAdded:connect( function (c) |
34 | c.Humanoid.Died:connect( function () |
36 | local cv = c.Humanoid:findFirstChild( "creator" ) |
44 | endk.leaderstats.Money.Value = k.leaderstats.Money.Value+ 4 |