Skip to content
| Marketplace
Sign in
Visual Studio Code>Other>seliware-executeNew to Visual Studio Code? Get it now.
seliware-execute

seliware-execute

xeho

|
61 installs
| (1) | Free
Executes a script using seliware websockets.
Installation
Launch VS Code Quick Open (Ctrl+P), paste the following command, and press enter.
Copied to clipboard
More Info

What does this do?

This extension lets you execute any lua script into roblox using Seliware Websockets.

Tutorial / How to use

Put this script in your autoexec folder located %localappdata%/seliware-autoexec

repeat wait() until game:IsLoaded()
while wait(1) do
    pcall(function()
        local ws = WebSocket.connect("ws://localhost:28561")
        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

Next open up your visual studio code. Open a script up. When you are ready to execute, click the little button at the bottom left called..
"Seliware execute"

Need Help / Questions

Please contact me on discord.
Tag: xehoo

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