A project by RealSGII2.
This is a program that will show your activity in Roblox Studio as a Discord Rich Presence.
- 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.
- Go to the Releases page to download the latest version.
- Install the Roblox Studio Plugin that comes with this program.
- 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.
- 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.
- This program was built using Node v14.15.3. Install that version.
- Clone the repository, then run
yarn
to install dependencies. - 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 };
- To preview changes, run
yarn dev
. - To compile the application, run
yarn build
.
Any feedback is welcome! Feel free to open an issue to give feedback.