Account Age

Ever wonder how long you've been on Roblox?  This script will tell you how old you are!  For this script you need to create a message then put that message into the workspace then change the text three times then remove it.


local m = Instance.new("Message")
m.Parent = game.Workspace
m.Text = ("You are ")
wait(1)
m.Text = (game.Players.jnv17.AccountAge)  -- change jnv17 to you're account name
wait(1)
m.Text = ("days old!")
wait(3)
m:remove()