I am interested as to how to display a local players roblox account age on a text label? I am confused as to how to do so. I inserted a local script into the text label. Here is what I wrote thus far:
script.Parent.Text = game.Players.LocalPlayer------What do I do next?
Thanks, bulder251
Next time, you should do research on your question, https://developer.roblox.com/en-us/api-reference/property/Player/AccountAge
You can get the player's account age with;
Player.AccountAge -- an integer
In your case, you can do;
script.Parent.Text = game.Players.LocalPlayer.AccountAge