You can’t reliably know what exact day the Roblox account “solly dogo” was made unless you have access to that account’s profile or Roblox’s backend data, and that specific username does not show up in public records or wiki- style listings of notable accounts.

Can I look up “solly dogo” join date?

Roblox does not provide a public search tool where you can type a username and instantly see their full creation timestamp (day, month, year, time).

Normally, you only see the join date when you are viewing a user’s profile page while logged into Roblox.

If “solly dogo” is your own account, you can check the date yourself from your profile (steps below).

If it is someone else’s account that isn’t famous or documented on wikis/forums, there’s no public database to tell you the exact day.

How Roblox shows your join date

Roblox has a built‑in way to show when an account was created: it appears as the “join date” / “birthday” in the Statistics box on a user’s profile.

  • Go to the Profile page in Roblox.
  • Scroll to the bottom until you see the Statistics section.
  • Your join date is listed there as a calendar date (day, month, year).

This is the simplest non‑technical way to find “what day was the Roblox account solly dogo made,” as long as you can open that account’s profile.

Technical methods developers use (for scripts/games)

Developers sometimes want the creation date for scripts that give veteran tags or anniversary rewards.

Two common methods are:

  1. Using the Roblox user API (via proxy)
    • Call https://users.roblox.com/v1/users/{id} (or a proxy like roproxy) to retrieve a JSON object that includes a created field (ISO timestamp of when the account was made).
 * Example (simplified):
   * Get user ID.
   * Send HTTP request.
   * Read `data.created` for exact date and time.
  1. Calculating fromAccountAge in days
    • Player.AccountAge returns how many days old the account is.
 * Developers multiply that by the number of seconds in a day, subtract from current time, then convert to a date.
 * Example logic:
   * seconds_since_creation=AccountAge×86400\text{seconds\\_since\\_creation}=\text{AccountAge}\times 86400seconds_since_creation=AccountAge×86400
   * creation_timestamp=os.time()−seconds_since_creation\text{creation\\_timestamp}=\text{os.time()}-\text{seconds\\_since\\_creation}creation_timestamp=os.time()−seconds_since_creation
   * `os.date("*t", creation_timestamp)` gives year, month, day, etc.

These methods are used inside Roblox games/scripts, not on regular user websites, so they require scripting access and can’t be run from a normal browser without extra work.

Why you probably can’t get the exact day for “solly dogo”

There are a few reasons the precise day might not be obtainable to you:

  • The username “solly dogo” doesn’t appear in public “oldest account” or “famous account” lists, which focus on users like the very first Roblox account.
  • Roblox support pages explain how to check your own join date, but not arbitrary accounts without visiting their profile.
  • There is no official public “account date lookup” website indexed that takes a username and returns exact join day, month, and year for any account.

So, unless:

  • You can open the “solly dogo” profile in the Roblox app or website, or
  • You are a developer using API or scripting methods with its user ID,

you won’t be able to know the exact day the account was made.

What you can do right now

If “solly dogo” is your account (or a friend’s who lets you log in or view the profile):

  1. Log into Roblox (mobile app or browser).
  1. Go to the Profile tab or page.
  1. Scroll to the bottom to the Statistics box.
  1. Read the join date; that’s the day the account was created.

If it’s not your account and you can only see the profile but not access developer tools, you still may see the join date in that same Statistics section; Roblox often shows it publicly on user profiles.

TL;DR

  • There’s no public record specifically saying “what day was the Roblox account solly dogo made.”
  • The only reliable way to know is to view that account’s profile and check the join date in the Statistics box, or use developer methods with the Roblox API and account age data.

Information gathered from public forums or data available on the internet and portrayed here.