Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>synapse-moonscriptNew to Visual Studio Code? Get it now.
synapse-moonscript

synapse-moonscript

Death_Blows

|
85 installs
| (0) | Free
Execute MoonScript on Synapse X!
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Synapse Moonscript

Adds support to execute moonscript with synapse inside vscode.

To use:

Execute this or put in auto-exec:

local ws = syn.websocket.connect("ws://localhost:5555")
local localPlayer = game.Players.LocalPlayer

ws:Send("auth:" .. localPlayer.Name)
ws.OnMessage:Connect(function(message)
    local fn, err = loadstring(message)

	if err then
	    print(err)
		ws:Send("execution-error:" .. err)
		return
	end

	fn()
end)

Then, create a file with moonscript code (VALID CODE!) Then, press execute and enjoy!

All roblox and executor globals work!

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