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

17
AutoConnect/AutoSetup.vbs Normal file
View File

@@ -0,0 +1,17 @@
Set WshShell = CreateObject("WScript.Shell")
' Wait for Roblox Studio
WScript.Sleep 2000
' Bring Roblox Studio to front
WshShell.AppActivate "Roblox Studio"
WScript.Sleep 500
' Send Ctrl+V to paste
WshShell.SendKeys "^v"
WScript.Sleep 500
MsgBox "Script pasted! Now:" & vbCrLf & vbCrLf & _
"1. Press Play (green ▶ button)" & vbCrLf & _
"2. Look for [RobloxMCP] in Output window", _
0, "Roblox MCP Setup"