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>
This commit is contained in:
Admin
2026-03-31 16:57:35 +04:00
Unverified
parent 9c44cb514f
commit a66533206f
16 changed files with 3448 additions and 595 deletions

26
AutoConnect/Setup-MCP.bat Normal file
View File

@@ -0,0 +1,26 @@
@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