system_create
Create a complete multi-file Roblox modular system including server, client, module scripts and remote events in a single atomic transaction.
Instructions
[HIGH_LEVEL] Creates a complete multi-file Roblox modular system (ServerScript, ModuleScript, Client LocalScript, and RemoteEvents) in a single atomic verified transaction.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| remotes | No | Array of RemoteEvent names to instantiate in ReplicatedStorage. | |
| clientCode | No | Lua source code for the LocalScript in StarterPlayerScripts. | |
| moduleCode | No | Lua source code for the shared ModuleScript in ReplicatedStorage. | |
| serverCode | No | Lua source code for the ServerScript in ServerScriptService. | |
| systemName | Yes | The name of the system (e.g. FishingSystem, InventoryManager, PetSystem). |