Skip to content

Instantly share code, notes, and snippets.

@kezzyhko
Last active September 4, 2023 10:32
Show Gist options
  • Save kezzyhko/75a5a4a5f35ed5031cab6970530768e4 to your computer and use it in GitHub Desktop.
Save kezzyhko/75a5a4a5f35ed5031cab6970530768e4 to your computer and use it in GitHub Desktop.
Prints Roblox registration dates of all players on server
local players = game:GetService("Players"):GetPlayers()
for _, player in pairs(players) do
local registrationTimestamp = (os.time() - player.AccountAge * 86400)
local registrationDateString = os.date("%Y-%m-%d", registrationTimestamp)
print(player.Name, registrationDateString)
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment