All-in-one AI agent skill for Roblox game development. Contains the complete MCP Bridge remote workflow + full Luau/Roblox knowledge base.
When installed, any AI agent working with a Roblox MCP Bridge workspace will automatically:
- Test the connection to Roblox Studio
- Pull all scripts before touching any code
- Work locally in
roblox-src/ - Push changes back to Studio
- Follow Roblox best practices (security, performance, patterns)
$skillDir = "$env:USERPROFILE\.agents\skills\roblox-studio-dev"
New-Item -ItemType Directory -Path $skillDir -Force
Invoke-WebRequest -Uri "https://raw.githubusercontent.com/KS55aa/testskill/main/SKILL.md" -OutFile "$skillDir\SKILL.md"mkdir -p ~/.agents/skills/roblox-studio-dev
curl -o ~/.agents/skills/roblox-studio-dev/SKILL.md \
https://raw.githubusercontent.com/KS55aa/testskill/main/SKILL.md- Clone this repo:
git clone https://github.com/KS55aa/testskill.git - Copy
SKILL.mdto~/.agents/skills/roblox-studio-dev/SKILL.md
Ask your AI agent: "Welche Roblox Skills hast du?" – It should describe the MCP Bridge workflow and Luau knowledge.
| Section | Content |
|---|---|
| MCP Bridge Workflow | Connection test, Pull/Read/Edit/Push cycle, creating new scripts, API reference |
| Luau Language | Types, strict mode, OOP, metatables, task library |
| Architecture | Client-server model, containers, script types |
| Networking | RemoteEvents, RemoteFunctions, validation rules |
| DataStores | CRUD, session locking, auto-save, data manager pattern |
| UI System | ScreenGui, layouts, code-generated UI, TweenService |
| Physics | Constraints, network ownership, collision groups |
| Security | Anti-cheat golden rules, validation pattern |
| Performance | Object pooling, parallel Luau, optimization tips |
| Patterns | Round system, matchmaking queue, debounce, signals |
| MarketplaceService | DevProducts, GamePasses, ProcessReceipt |
| Cross-Server | MessagingService, MemoryStoreService |
- Roblox MCP Bridge (Plugin + Cloud API)
- Roblox Studio with HTTP Requests enabled
- PowerShell (for pull/push scripts)
MIT