I have a Tycoon Game and I realised that on phone users the leaderboard doesn't even appear, so I wanted to make a gui text where it says "Cash= (the amount of cash you got)" and I don't really understand how, thanks for the help
Just make a gui,
player = game.Players.LocalPlayer function update() script.Parent.Text = player.leaderstats.Cash.Value end player.leaderstats.Cash.Value.Changed:connect(update)