Im very bad at scripting and If anyone could help me that would be great :)
I've been making a game where you can gain points but I want the points to show in a textbox instead of the leaderboard my brother has tried and it worked but when he reset it went back to label so he scrapped it. Could someone help please?
This may be over complicating it, but this is what works for me. Insert the script inside of the text label.
local currencyname = "Money" while wait(0.1) do for i,v in pairs(game.Players:GetPlayers()) do if v:FindFirstChild("leaderstats") then script.Parent.Text = v.leaderstats[currencyname].Value end end end