Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>AWPGG-VSCode-ExecuteNew to Visual Studio Code? Get it now.
AWPGG-VSCode-Execute

AWPGG-VSCode-Execute

ChasM

|
57 installs
| (0) | Free
A VS Code extension to manage AWP.GG connections and execute code.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

VSCode executing for AWP.GG

This extension is based off of 'fyz's' popular extension 'Synapse X Execute'.

Usage

It is reccomended to place this script into autoexecute, otherwise you will have to manually run it every time.

Make a new file inside AWP.GGs \autoexecute folder. Name it vscode-connect.lua and paste the script below into it.

    repeat wait() until game:IsLoaded()
    local isConnected = false
    while wait(1) and not isConnected do
        pcall(function()
            local webSocket = WebSocket.connect("ws://localhost:33882/")
                if not webSocket then
                    return
                end
                local authMessage = "auth:" .. game:GetService("Players").LocalPlayer.Name
                    webSocket:Send(authMessage)
                webSocket.OnMessage:Connect(function(msg)
                    local func, err = loadstring(msg)
                        if err then
                            webSocket:Send("compile_err:" .. err)
                            return
                        end
                    func()
                end)
                isConnected = true
            webSocket.OnClose:Wait()
        end)
    end

Features

  • This utilizes websocket connections, meaning you do not have to have the AWP.GG UI active to be able to execute.
  • This extension is also only active when a file that can be ran is open.
  • Luau compilation errors are redirected into the vscode notification system.
  • Contact us
  • Jobs
  • Privacy
  • Manage cookies
  • Terms of use
  • Trademarks
© 2025 Microsoft