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

Leaderstats GUI not updating with the script?

Asked by 9 years ago

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.

1local currentPoints = script.Parent
2local leaderstats = game.Players.LocalPlayer:WaitForChild("leaderstats")
3if leaderstats then
4--Reflect the current amount of points inside the leaderstats
5    currentPoints.Text = "$: " ..leaderstats.Points.Value
6end

1 answer

Log in to vote
1
Answered by 9 years ago

Hi, I can help you. First you want to define the player:

1plr = game.Players.LocalPlayer

Second you want to repeat a wait until leaderstats is loaded like:

1repeat wait() until plr:WaitForChild("leaderstats")

Third you want to have a while loop so that it updates every second

1while true do
2wait()
3script.Parent.Text = "$: " ..plr.leaderstats.Points.Value
4end

The whole script:

1plr = game.Players.LocalPlayer
2 
3repeat wait() until plr:WaitForChild("leaderstats")
4 
5while true do
6wait()
7script.Parent.Text = "$: "..plr.leaderstats.Points.Value
8end

Remember this needs to be in a local script

0
Thanks! That solved it! Raven_Caedes 95 — 9y
0
Anytime! docrobloxman52 407 — 9y
Ad

Answer this question