I’ve looked around and found no posts about this glitch/error. I noticed the issue when my game kept limiting what I could, as it is supposed to since my AccountAge seemed to be 0. I’ve tried it in 2 separate games so the issue isn’t due to any error in one.
I wrote up a simple script in a test place and got the image underneath it as the output.
local Players = game:GetService('Players')
Players.PlayerAdded:Connect(function(Player)
print(Player.UserId)
print(Player.AccountAge)
end)