COIN GUI
SERVER SCRIPT SERVICE WITH SCRIPT
INSIDE THE SERVER SCRIPT SERVICE SCRIPT
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.