game-hax / Roblox-Websocket-Executor

A Roblox "executor", created using the Synapse X websocket library and a C# websocket server.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Roblox Websocket Executor

A Roblox "executor", created using the Synapse X websocket library and a C# websocket server.

How to use

To use the client, place the script in your exploit's (I have only tested this using Synapse X) "autoexec" directory, and whenever you join a game in Roblox, it will start the client, which will try to connect to the server.

To use the server, download the executor's ZIP onto your computer, extract it, and run the executable. It will start the server, and it will allow you to execute scripts.

Demonstration

MQXUYGRDHX.mp4

Further explanation

There is a WebSocket server in C# user interface. When the user executes a script, it broadcasts to connected clients with the script they want to execute.

The client is written in Lua, on first execution, it will tell the server to execute files in the "autoexec" directory of the executor, it will also hook into the print, warn, and error function, and it will broadcast each output, to allow for an external console.

This isn't useful, and this serves as a proof of concept. However, this does have some advantages over using an API like SXLib (Synapse X's library), such as being able to hook outputs like print or warn, for an external console in a custom UI, however you could probably do a combination of SXLib and websockets, as you wouldn't need to include the client in "autoexec", as SXLib could automatically execute that for you.

Attribution

Here are a list of open-source libraries used by this project.

About

A Roblox "executor", created using the Synapse X websocket library and a C# websocket server.

License:GNU General Public License v2.0


Languages

Language:C# 96.3%Language:Lua 3.7%