Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Synapse OutputNew to Visual Studio Code? Get it now.
Synapse Output

Synapse Output

Alleexxii

|
1,615 installs
| (0) | Free
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Get the Developer Console/Errors in the VSCode Output.

Place this into your autoexec folder named whatever you like.

Synapse Only

getgenv()["WebsocketSendErrorSettings"] = {
    ["ConsoleRedirection"] = true,
    ["ErrorRedirection"] = true
}
if syn and syn.cache_replace and syn.cache_invalidate and syn.set_thread_identity and syn.get_thread_identity then
        local WebSocket = syn.websocket.connect("ws://localhost:34523/")
        game:GetService("LogService").MessageOut:Connect(function(m)
            if getgenv()["WebsocketSendErrorSettings"]["ConsoleRedirection"] == true then
                WebSocket:Send(m)
            end
        end)
        game.ScriptContext.ErrorDetailed:Connect(function(message)
            if getgenv()["WebsocketSendErrorSettings"]["ErrorRedirection"] == true then
                WebSocket:Send(message:sub(1, 1) .. utf8.char(8203) .. message:sub(2))
            end
        end)
        getgenv().clearoutput = function(channel)
            WebSocket:Send("ClearOutput")
        end
        getgenv().disableerroroutput = function()
            WebSocket:Send("DisableErrorOutput")
        end
end
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft