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

AWP.GG Helper

Preview

monte-h8r

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

AWP.GG 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 task.wait() until game:IsLoaded()

while task.wait(1) do 
    pcall(function()
        local ws = websocket.connect("ws://localhost:33882/")
        
        if not ws then
            print("Failed to establish WebSocket Connection")
            return
        end

        print("WebSocket Connection Established")

        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