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

HELP PLEASE MY SCRIPT HAS A ERROR AND I'M STUCK?

Asked by 5 years ago
Edited by Ziffixture 5 years ago

Im a Bad scripter and a Very beginner one, i was copying a Alvin Blox vid on yt and on line 43 of my code i had a error >:( it said expected identifer when parsing, got ')' on my end) i marked the error with ERROR --> Can You Anyone help?!?!

Script:

01local dataStores = game:GetService("DataStoreService"):GetDataStore("CashDataStore")
02local defaultCash = 0
03local playersLeft = 0
04 
05game.Players.PlayerAdded:Connect(function(player)
06 
07        playersLeft = playersLeft + 1
08 
09    local leaderstats = Instance.new("Folder")
10    leaderstats.Name = "leaderstats"
11    leaderstats.Parent = player
12 
13    local bucks = Instance.new("IntValue")
14    bucks.Name = "Cash"
15    bucks.Value = 0
View all 66 lines...
0
1. Delete the ) (There would be more step if it still error) Nguyenlegiahung 1091 — 5y
0
when i do that, my function calls underline yellow :( SupaEpicDad 0 — 5y
0
It’s underlining red since all the syntax errors have been resolved. You’re now experiencing a logic problem with your code. You cannot call “player” outside of the PlayerAdded signal since it’s only passed as a parameter in it’s scope, making the CharacterAdded signal invalid. Same issue applies for saying character.Humanoid.Died. Ziffixture 6913 — 5y
0
Maybe give the link to the Alvin Blox Video so I can try to re-write the script for you. JuzeyPlayz -83 — 5y

2 answers

Log in to vote
0
Answered by
JoneXI 51
5 years ago

I think that there has to be no ), just end.

0
when i do that all my function calls under line orange SupaEpicDad 0 — 5y
Ad
Log in to vote
0
Answered by 5 years ago

Here put this script from the video and see what goes on tell me if it worked. You can change Money to your currency like Cash I see you put that.

01local player = game.Players.LocalPlayer
02 
03local leaderstats = player:WaitForChild("leaderstats")
04 
05local datastore = game:GetService("DataStoreService"):GetDataStore("MoneySave")
06 
07local money = leaderstats:WaitForChild("Money")
08 
09defaultCash = 10
10 
11playersLeft = 0
12 
13 
14 
15game.Players.PlayerAdded:Connect(function(player)
View all 97 lines...
0
So it should still work with all the spaces if it dosent then just push them together but try it normal first. Also check ur Output in Studio when testing. JuzeyPlayz -83 — 5y

Answer this question