HELP PLEASE MY SCRIPT HAS A ERROR AND I'M STUCK?
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:
01 | local dataStores = game:GetService( "DataStoreService" ):GetDataStore( "CashDataStore" ) |
05 | game.Players.PlayerAdded:Connect( function (player) |
07 | playersLeft = playersLeft + 1 |
09 | local leaderstats = Instance.new( "Folder" ) |
10 | leaderstats.Name = "leaderstats" |
11 | leaderstats.Parent = player |
13 | local bucks = Instance.new( "IntValue" ) |
16 | bucks.Parent = leaderstats |
20 | player.CharacterAdded:Connect( function (character) |
21 | character.Humaniod.WalkSpeed = 16 |
24 | character.Humanoid.Died:Connect( function () |
26 | if character:FindFirstChild( "GameTag" ) then |
27 | character.GameTag:Destroy() |
30 | player:LoadCharacter() |
36 | player_data = dataStores:GetAsync(player.UserId.. "-Cash" ) |
39 | if player_data ~ = nil then |
40 | bucks.Value = player_data |
42 | bucks.Value = defualtCash |
48 | local bindableEvent = Instance.new( "BindableEvent" ) |
50 | game.Players.PlayerRemoving:Connect( function (player) |
53 | dataStores:SetAsync(player.UserId.. "-Cash" , player.leaderstats.Cash.Value) |
55 | playersLeft = playersLeft - 1 |
61 | game:BindToClose( function () |
63 | while playersLeft > 0 do |
64 | bindableEvent.Event:Wait() |