roblox roblox-studio lua sandbox automation sdk developer-tool script-engine plugin education
(Add these in Repository → Settings → General → Topics)
RBLX ScriptCore is a developer‑friendly Lua integration toolkit with a secure execution core and REST API.
Built for developers and educators looking to optimize Roblox Studio workflows, test scripts locally, and create custom automation modules in a safe sandbox.
POST /execute)| Component | Minimum | Recommended |
|---|---|---|
| OS | Windows / macOS / Linux | Latest build |
| Python | 3.10 | 3.11 |
| RAM | 4 GB | 8 GB |
| Disk | 200 MB | 500 MB |
```bash git clone https://github.com/yourname/rblx_scriptcore.git cd rblx_scriptcore pip install -r requirements.txt python -m executor.sandbox Send a test request:
Bash
curl -X POST http://127.0.0.1:5000/execute
-H “Content-Type: application/json”
-d ‘{“code”:”return 2 + 2”}’
Expected output:
JSON
{“status”:”ok”,”result”:”4”} ⚙️ Configuration ini
SANDBOX_PORT=5000 LUA_MEM_LIMIT=64 LOG_LEVEL=DEBUG 🧾 Release Notes (v1.2.0) Date: April 2024
Introduced new modular API structure Optimized logging and sandbox checks Added SEO meta tags and structured data Minor bug fixes and documentation improvements ⚖️ Legal Notice RBLX ScriptCore is intended for educational and authorized development environments only. It does not alter live Roblox clients or communicate with remote servers. Use responsibly within Roblox Creator Terms of Service.
```