- 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>
27 lines
573 B
Batchfile
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
|