Files
ClaudeCode-Roblox-Studio-MCP/AutoConnect/AutoSetup.vbs
Admin a66533206f 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>
2026-03-31 16:57:35 +04:00

18 lines
431 B
Plaintext

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"