Speed up your live-experience testing with the Join-Roblox-Game extension for Visual Studio Code. This tool enables you to directly link your workspace with a Roblox game, offering a streamlined path to jump from code to gameplay within a single click.
-
Configure the
place.jsonFile:- Create a file named
place.jsonwithin your workspace. - Populate it with the
placeIdof your Roblox game and your Roblox account'scookiefor authentication.
{ "placeId": "your-game-id-here", "cookie": "your-roblox-cookie-here" } - Create a file named
-
Join Your Game:
- Make sure your workspace contains Lua files to activate the extension's functionality.
- Click the
Join Gamebutton on the bottom left of the status bar to start your Roblox game.
Storing sensitive information, like your Roblox cookie, requires careful handling. It is highly adviced to exclude place.json from your version control. This can be done by adding place.json to your .gitignore file.