COIN GUI
![image](/secure-media-uploads/uploads/original/4X/d/8/7/d8739410b79e5099a385cd837e156540eb140a36.png)
![image](/secure-media-uploads/uploads/original/4X/5/e/c/5ec28c183b943a298af00227c517627c73aff581.png)
COIN GUI
You need to write a script that changes the text when the Coins value goes up.
Any ideas. Im not sure how to do that one.
local LocalPlayer = game:GetService("Players").LocalPlayer
LocalPlayer.leaderstats.Coins:GetPropertyChangedSignal("Value"):Connect(function()
script.Parent.Text = LocalPlayer.leaderstats.Coins.Value
end)
Put this into a LocalScript, and parent the LocalScript to the text label.