Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>Nihon HelperNew to Visual Studio Code? Get it now.
Nihon Helper

Nihon Helper

Preview

monte-h8r

|
6 installs
| (0) | Free
Execute Lua scripts through Nihon's WebSocket Library
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

Nihon Helper

Enhance your Roblox experience by executing Lua scripts seamlessly through WebSockets, directly from Visual Studio Code.

Instructions

Either execute this script, or more preferably put it into your AutoExec folder.

repeat wait() until game:IsLoaded()
while wait(1) do
    pcall(function()
        local ws = WebSocket.New("ws://localhost:33882/")
        
        if not ws then
            return
        end

        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
            pcall(func)
        end)

        ws.OnClose:Connect(function()
            print("WebSocket connection closed")
        end)

        while ws do wait() end
    end)
end

Issues

Feel free to DM me on discord @h_8r

Credit

Creators: monte & yafyz (Synapse X Execute)

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