1 | robu = game.Players.Player:GetFullName() |
2 |
3 | while true do |
4 | script.Parent.Text = "Robux Ammount: " ..game.Players:FindFirstChild().leaderstats.ROBUX |
5 | wait() |
6 | end |
why does it not work? it's soppost to make the textbutton display the ammount of robux the player has.
You didn't use robu at all? Anyways;
1 | local player = game.Players.LocalPlayer |
2 |
3 | while true do |
4 | script.Parent.Text = "ROBUX Amount: " ..player:FindFirstChild( "leaderstats" ).ROBUX |
5 | wait() |
6 | end |
Even better thing to do would be;
1 | local player = game.Players.LocalPlayer |
2 | local robux = player:FindFirstChild( "leaderstats" ).ROBUX |
3 |
4 | robux.Changed:connect( function (val) |
5 | script.Parent.Text = "ROBUX Amount: " ..val |
6 | end ) |