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

My script gives me an error message whenever I end the script?

Asked by
zomspi 541 Moderation Voter
5 years ago

I literally cannot end this script, it's always a red line under the end or an error message! How the hell do I end this script?

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

Thanks!

1 answer

Log in to vote
0
Answered by 5 years ago

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...

01game.Players.PlayerAdded:Connect(function(player)
02 
03    player.CharacterAdded:Connect(function(character)
04 
05        if game.MarketplaceService:PlayerOwnsAsset(player,7187215) then
06 
07            game.Players.PlayerAdded:connect(function(p)
08            p.CharacterAdded:connect(function(c)
09 
10            c.Humanoid.Died:connect(function()
11 
12 
13 
14                local cv = c.Humanoid:findFirstChild("creator")
15 
View all 67 lines...
0
a lot of the code is out of view.. sorry, you'll need to use the "Copy" button to see it all. JasonTheOwner 391 — 5y
Ad

Answer this question