01 | game.Players.PlayerAdded:Connect( function (player) |
02 | local stats = Instance.new( "Folder" , player) |
03 | stats.Name = "leaderstats" |
04 | local points = Instance.new( "IntValue" ,stats) |
05 | points.Name = "Points" |
07 | local points = player.leaderstats.Points |
08 | points.Value = points.Value + 1 |
If you are going to say “player” you must include it in the function that you used the argument in. Outside of the function, “player” has no definition.
You also need to add the +1 to the points, and without saying value, the script thinks you are trying to add numbers to just a variable that has no number correlation.
Hopefully this helps you! :)