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

What is wrong with this script? Give point and leaderboard script

Asked by 4 years ago
Edited 4 years ago
01game.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"
06end)
07 
08 
09while true do
10    local points = player.leaderstats.Points
11    points = points + 1
12    wait()
13end
0
You have the while true do loop outside of the playeradded function, so you can’t use “player” DarkDanny04 407 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago
01game.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"
06    while true do
07        local points = player.leaderstats.Points
08         points.Value = points.Value + 1
09         wait()
10    end
11end)

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! :)

Ad

Answer this question