A multiplayer survival horror game for Roblox inspired by Doctor Who's "Dot and Bubble" (2024).
Roblox Creator: ItsFinetime
Players navigate a utopian city while being hunted by a creature they cannot see—unless they drop their protective "bubble" interface. The Dot controls your navigation, your social feed, your entire reality. But The Dot has learned to hate you.
- Bubble Mode: Safe, comfortable, blind to threats
- Reality Mode: See the creature, but it sees YOU
- Death Order: Players hunted alphabetically by name
- Objectives: Complete 3 of 5 to unlock the canal escape
- The Outsider: A mysterious voice trying to help you escape
- Implementation Status - What's implemented (source of truth)
- Documentation Index - Guide to all docs
- Game Design Document - Core mechanics and vision
- Technical Specification - Architecture
- Asset Requirements - Production needs
- Completed Plans - Implemented feature designs
- Future Features - Post-launch roadmap
Prerequisites: Node.js 18+, Roblox Studio, Rojo
# Install dependencies
npm install
# Build TypeScript to Luau
npm run build
# Watch mode (continuous compilation)
npm run watch
# Start Rojo server (in another terminal)
rojo serveThen connect Rojo in Roblox Studio and press F5 to test.
src/
├── client/ # Runs on player's device
├── server/ # Runs on Roblox servers
└── shared/ # Shared code and types
See docs/SETUP_GUIDE.md for detailed setup instructions.