- 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>
30 lines
705 B
Batchfile
30 lines
705 B
Batchfile
@echo off
|
|
echo =====================================
|
|
echo ROBLOX MCP - ONE-CLICK SETUP
|
|
echo =====================================
|
|
echo.
|
|
echo STEP 1: Script copied to clipboard!
|
|
echo.
|
|
echo STEP 2: Do this in Roblox Studio:
|
|
echo - Go to Explorer
|
|
echo - Open ServerScriptService
|
|
echo - Right-click, Insert Object, Script
|
|
echo - Press Ctrl+V to paste
|
|
echo - Press Play (green arrow)
|
|
echo.
|
|
echo STEP 3: Enable HTTP if needed:
|
|
echo - File, Game Settings, Security
|
|
echo - Enable BOTH HTTP options
|
|
echo.
|
|
pause
|
|
|
|
echo Checking connection...
|
|
curl -s http://127.0.0.1:37423/health
|
|
echo.
|
|
pause
|
|
|
|
curl -s http://127.0.0.1:37423/health
|
|
echo.
|
|
echo If you see "studioConnected": true above, it works!
|
|
pause
|