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:
17
AutoConnect/AutoSetup.vbs
Normal file
17
AutoConnect/AutoSetup.vbs
Normal 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"
|
||||
Reference in New Issue
Block a user