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

Synapse Output And Input

TeeHee567

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

Place this into your autoexec folder named whatever you like.

my COPYPASTE synapse vscode integration

why?, because the websocket library in alleexxi's one isnt up to date and requires an update and its just nice to have everything in one extension.

btw has 10min timer to delete everything in output and on close no setting :)

Original by Alleexxi and yafyz https://github.com/yafyz https://github.com/Alleexxi

shortcut is Ctrl+Alt+S

repeat wait() until game:IsLoaded()
local ws = syn.websocket.connect("ws://localhost:34523/")
spawn(function()
    while wait(1) do
        pcall(function()
            ws:Send("auth:" .. game.Players.LocalPlayer.Name)
            ws.OnMessage:Connect(function(msg)
                local func, err = loadstring(msg)
                if err then
                    ws:Send("compile_err:" .. err)
                    return
                end
                func()
            end)
            ws.OnClose:Wait()
        end)
    end
end)
if syn and syn.cache_replace and syn.cache_invalidate and syn.set_thread_identity and syn.get_thread_identity then
    game:GetService("LogService").MessageOut:Connect(function(m)
        ws:Send(m)
    end)
    game.ScriptContext.ErrorDetailed:Connect(function(message)
        ws:Send(message:sub(1, 1) .. utf8.char(8203) .. message:sub(2))
    end)
end

print("loaded vscode")

image

  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft