I am having problem getting access to the players account age. I got the script right here. I just need help finding out a way to get access to the players account age.
local s = script.Parent game.Players.PlayerAdded:connect(function(p) s.Visible = true s.Text = p.Name.." Has Joined The Server! | Account Age:" -- that is where I want the account age wait(3) s.Visible = false s.Text = "" -- don't worry I want the text to be nothing when the script is over end)
player.AccountAge
(assuming player is your player variable)
Next time, use the Wiki or the Object Browser.
If you where gonna make a "Message" to show who and accountage joined you would have this...
game.Players.PlayerAdded:connect(function(Player) m=Instance.new("Message",workspace) m.Text=(Player.Name.." Has Joined The Sever! | AccountAge="..Player.AccountAge) wait(5) m:remove() end)