Important
Due to Roblox’s updated age guidelines and content restrictions, many of the classic games that this script was designed to discover are no longer accessible or playable. As a result, Roblox Vintage Game Finder is currently non-functional for its original purpose.
A Python script that scans for classic Roblox games from 2006-2009 based on activity, visit count, and other metadata.
Warning
Disclaimer This project is not affiliated with Roblox Corporation. Use responsibly and respect Roblox's terms of service.
- Vintage Game Detection: Targets games created between 2006 and 2009
- Visit and Inactivity Filtering: Requires 1,000+ visits and no updates for 3+ years
- Game Metadata Extraction: Pulls title, visit count, creation/update dates, thumbnails, and game passes
- Concurrency Support: Uses multithreading with rate limiting to scan faster
- Progress Tracking: Saves the last scanned ID and found games
- Graceful Exit: Handles Ctrl+C interrupts, waits for workers to complete, and saves progress cleanly
- Python 3.8+
requestslibrary (install viapip install requests)
git clone https://github.com/NokaAngel/Roblox-Vintage-Game-Finder.git
cd Roblox-Vintage-Game-Finder
pip install requestsEdit the top of the script if needed:
START_ID = 1450
RATE_LIMIT_DELAY = 2.0
MAX_WORKERS = 5Then run it:
python place-scraper.pyOutput is saved to Enhanced Games List.txt
Place ID: 12345678
URL: https://www.roblox.com/games/12345678/
Title: Classic Tycoon
Status: Uncopylocked
Created: 2008-03-04T19:20:31.563Z
Updated: 2011-05-12T08:34:19.267Z
Visits: 123456
Thumbnail: https://.../thumbnail.png
Game Passes: VIP Shirt, Golden Sword
==================================================
| Setting | Description | Default |
|---|---|---|
OUTPUT_FILE |
Output file path | Enhanced Games List.txt |
START_ID |
Starting Place ID | 1450 |
RATE_LIMIT_DELAY |
Delay between requests per thread (in seconds) | 2.0 |
MAX_WORKERS |
Number of concurrent threads | 5 |
- Fork the repo
- Create a branch (
git checkout -b feature-branch) - Commit your changes (
git commit -m 'Add feature') - Push (
git push origin feature-branch) - Open a pull request
MIT License. See LICENSE file for full terms.