Hey!
Am currently working on a game that will show your money from the leaderboard in surface gui but, it won’t work.
There is a local script parented to a textlabel.
The local script:
local player = game.Players.LocalPlayer
local stats = player:WaitForChild("leaderstats")
local cash = stats:WaitForChild("Money")
script.Parent.Text = "Money: "..cash.Value
while wait() do
script.Parent.Text = "Money: "..cash.Value
end
Help is appreciated!