Hi. I'm trying to make this GUI update its text with the current amount of points from the leaderstats. However, it stays at 200 (the set amount of points) and does not update with the script.
1 | local currentPoints = script.Parent |
2 | local leaderstats = game.Players.LocalPlayer:WaitForChild( "leaderstats" ) |
3 | if leaderstats then |
4 | --Reflect the current amount of points inside the leaderstats |
5 | currentPoints.Text = "$: " ..leaderstats.Points.Value |
6 | end |
Hi, I can help you. First you want to define the player:
1 | plr = game.Players.LocalPlayer |
Second you want to repeat a wait until leaderstats is loaded like:
1 | repeat wait() until plr:WaitForChild( "leaderstats" ) |
Third you want to have a while loop so that it updates every second
1 | while true do |
2 | wait() |
3 | script.Parent.Text = "$: " ..plr.leaderstats.Points.Value |
4 | end |
The whole script:
1 | plr = game.Players.LocalPlayer |
2 |
3 | repeat wait() until plr:WaitForChild( "leaderstats" ) |
4 |
5 | while true do |
6 | wait() |
7 | script.Parent.Text = "$: " ..plr.leaderstats.Points.Value |
8 | end |
Remember this needs to be in a local script