Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- wait()
- local player = game.Players.LocalPlayer
- local leaderstats = player:WaitForChild("leaderstats")
- local Cash = leaderstats:FindFirstChild("Cash")
- if Cash then
- script.Parent.Text = Cash.Value
- Cash.Changed:connect(function()
- script.Parent.Text = Cash.Value
- end)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement