Files
ClaudeCode-Roblox-Studio-MCP/AutoConnect/Setup-MCP.bat
Admin a66533206f Add FPS game example, auto-connect plugin, and Python injection tools
- Updated RobloxMCPPlugin with HTTP polling (auto-enables HttpService)
- Added 20-weapon FPS game example (CoD-style)
- Added Python studio-inject.py for command bar injection via Win32 API
- Added auto-connect setup scripts (VBS + PowerShell)
- Updated MCP server with all FPS game tools

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-03-31 16:57:35 +04:00

27 lines
573 B
Batchfile

@echo off
echo === Roblox MCP Connection Helper ===
echo.
REM Check MCP server
curl -s http://127.0.0.1:37423/health
echo.
echo.
echo === INSTRUCTIONS ===
echo.
echo In Roblox Studio:
echo 1. File ^> Game Settings ^> Security
echo 2. Enable BOTH HTTP options
echo 3. ServerScriptService ^> Right-click ^> Insert Object ^> Script
echo 4. Paste the script from: roblox-plugin\RobloxMCPServer_HTTP.lua
echo 5. Press Play (green ^> button)
echo.
echo You should see: [RobloxMCP] Starting Roblox MCP Server
echo.
pause
curl -s http://127.0.0.1:37423/health
echo.
echo.
pause