Files
bo3-js/README.md
usernames122 300bb16e5e add readme
2025-10-12 18:05:13 +02:00

745 B

JSRobloxClone

THIS IS JUST A REPLICATION DEMO CURRENTLY! You can't make games with this at all currently.

A simple Roblox-like multiplayer game engine clone using JavaScript and Three.js.

Features

  • DataModel-based object hierarchy
  • Multiplayer networking (WebSocket)
  • 3D rendering with Three.js
  • Workspace and replication services
  • Debug overlay for client

Getting Started

  1. Install dependencies:
    npm install
    
  2. Start the server (ensure you have a WebSocket server running on ws://localhost:8080).
  3. Run the client:
    node js/clientmain.js
    

Project Structure

  • js/core/ - Core engine classes
  • js/instances/ - Game services and objects
  • js/clientmain.js - Client entry point