Hi, I have problems with this leader board. Problem: Workspace.Gem LeaderBoard:6: ')' expected (to close '(' at line 1) near '<eof>'
Script:
game.Players.PlayerAdded:connect(function(player) local folder = Instance.new("Folder",player) folder.Name = "leaderstats" local cash = Instance.new("IntValue",folder) cash.Name = "Gems" end
Any help? Thanks alot, Bob.
You are supposed to write
end)
On the last line to close
(function(player)