Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>ROBLOX Code ExecutorNew to Visual Studio Code? Get it now.
ROBLOX Code Executor

ROBLOX Code Executor

Pinguin Development

|
30 installs
| (0) | Free
Execute your scripts directly in ROBLOX from VS Code! Easy connection to any ROBLOX executor.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

ROBLOX Code Executor

Execute your ROBLOX scripts directly from VS Code with a single click! This extension adds convenient buttons to your editor for connecting to and executing scripts in any ROBLOX executor.

Need Help?

Join our community Discord for support and help: https://discord.gg/pinguindev

How It Works

This extension adds two buttons to your VS Code status bar:

  • "Connect to ROBLOX execute!" - Tests your connection to the ROBLOX executor
  • "EXECUTE ROBLOX!" - Sends your current code to be executed in ROBLOX

Setup Instructions

1. Add this script to your executor's autoexecute folder:

local WebSocket = assert(
    WebSocket or Websocket or websocket or (syn and syn.websocket),
    "Your executor is missing a websocket API!"
)

if not game:IsLoaded() then
    game.Loaded:Wait()
end

while true do
    local success, client = pcall(WebSocket.connect, "ws://localhost:33882/")
    if success then
        client.OnMessage:Connect(function(payload)
            local callback, exception = loadstring(payload)
            if exception then
                error(exception, 2)
            end

            task.spawn(callback)
        end)

        client.OnClose:Wait()
    end

    task.wait(1)
end

2. How to Use

  1. Open your ROBLOX executor and make sure it's running
  2. Launch ROBLOX and join a game
  3. Click the "Connect to ROBLOX execute!" button in VS Code to verify the connection
  4. Write or open your script in VS Code
  5. Click the "EXECUTE ROBLOX!" button to send and execute your script

Requirements

  • Any ROBLOX executor with WebSocket support
  • VS Code version 1.80.0 or higher

Troubleshooting

If you're having issues connecting:

  • Make sure your executor is running with the auto-execute script
  • Check that you're running ROBLOX and your executor as administrator
  • Verify that port 33882 is not blocked by your firewall
  • Join our Discord for help: https://discord.gg/pinguindev

Features

  • Quick Execution - Execute scripts with a single click
  • Connection Testing - Verify your connection before executing
  • Works with Any Executor - Compatible with any executor that supports WebSocket
  • Visual Feedback - Notifications show connection and execution status

Release Notes

1.1.0

  • Initial release of ROBLOX Code Executor
  • Added "Connect to ROBLOX execute!" and "EXECUTE ROBLOX!" buttons
  • WebSocket connection to ROBLOX executors
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft