Skip to content
This repository has been archived by the owner on Aug 30, 2023. It is now read-only.

Latest commit

 

History

History
44 lines (30 loc) · 1.71 KB

README.md

File metadata and controls

44 lines (30 loc) · 1.71 KB

roblox-studio-presence

A project by RealSGII2.

About

This is a program that will show your activity in Roblox Studio as a Discord Rich Presence.

Features

  • Shows when you're viewing the world, or a script (the script's name is shown!).
  • Shows a counter of how long you've been on Studio.
  • Shows the name of the place you're working on.
  • Displays a button that will open the game you are working on.

Getting Started

  1. Go to the Releases page to download the latest version.
  2. Install the Roblox Studio Plugin that comes with this program.
  3. Open the file that is for your operating system. (Running the program from a command line with the --silent option will hide the prompt that opens.
    • Windows Users: You may optionally run silent.bat to automatically run this command.
  4. Open Studio! It should work immediately.
    • If your presence does not show, try reconnecting the plugin by the Plugins tab in Studio, clicking the plugin, then clicking Reconnect.

Building

  1. This program was built using Node v14.15.3. Install that version.
  2. Clone the repository, then run yarn to install dependencies.
  3. Add the file src/app.config.ts, paste and edit the following content:
const port = process.env.PORT ?? 4001;
const clientId = 'The Client Id of a Discord Application';
const cookie = 'The ROBLOSECURITY cookie to log in to an account with.';

export { port, clientId, cookie };
  1. To preview changes, run yarn dev.
  2. To compile the application, run yarn build.

Feedback

Any feedback is welcome! Feel free to open an issue to give feedback.