Star 历史趋势
数据来源: GitHub API · 生成自 Stargazers.cn
README.md

Понял. Вот готовый файл README.md без батника, просто скопируй и вставь в блокнот, сохрани как README.md в корне проекта:

# 🎮 Roblox Script Debugger — Developer Console <div align="center"> ![Version](https://img.shields.io/badge/version-1.0.0-blue?style=for-the-badge) ![Platform](https://img.shields.io/badge/platform-Windows%2010%2F11%20x64-lightgrey?style=for-the-badge) ![C++](https://img.shields.io/badge/C%2B%2B-17-00599C?style=for-the-badge&logo=c%2B%2B) ![ImGui](https://img.shields.io/badge/ImGui-Docking-blueviolet?style=for-the-badge) ![MSVC](https://img.shields.io/badge/MSVC-2022-5C2D91?style=for-the-badge&logo=visual-studio) ![License](https://img.shields.io/badge/license-MIT-green?style=for-the-badge) <br> **Advanced debugging console for Roblox Studio developers.** <br>Execute custom Lua scripts, inspect environment, test game logic in real time. </div> --- ## 📖 About Roblox Script Debugger is a developer tool designed to assist Roblox Studio creators with debugging and testing. It provides a Lua execution environment that attaches to the Roblox client process, enabling: - Real-time script evaluation during development - Environment inspection and variable watching - Game logic testing without full Studio restarts - Deep access to the Lua VM for educational research **This tool is intended for educational purposes and private server testing only.** --- ## ✨ Features | Feature | Description | |---------|-------------| | 🖥️ **Interactive Console** | ImGui-based overlay with syntax highlighting | | 📝 **Multi-Script Support** | Execute multiple Lua scripts simultaneously | | 🔍 **Environment Browser** | Inspect Game, Workspace, Players, ReplicatedStorage | | 📚 **Script Library** | Save, load, and organize frequently used scripts | |**Auto-Execute** | Run scripts automatically on client attach | | 🧩 **Plugin API** | Extend functionality through Lua plugins | --- ## 🚀 Quick Start ### Prerequisites - Windows 10/11 x64 - Roblox installed (official client) - Visual Studio 2022 (Build Tools) ### Download ```bash git clone https://github.com/yourname/roblox-script-debugger.git cd roblox-script-debugger
🔧 Build Instructions (click to expand)
cmake -S . -B build -A x64 cmake --build build --config Release

Binary will be at:

build\bin\Release\rb_debugger.exe

Usage

# Launch Roblox first, then attach the debugger rb_debugger.exe # Or specify a game ID for auto-join rb_debugger.exe --place-id 12345678

🔧 How It Works

graph TD A[Launch Roblox Client] --> B[Attach rb_debugger] B --> C[Lua VM Bridge] C --> D[Script Execution] D --> E[Environment Access] E --> F[Real-time Output]

📁 Project Structure

Click to expand
roblox-script-debugger/
├── README.md
├── LICENSE
├── .gitignore
├── CMakeLists.txt
├── assets/
│   └── banner.png
└── src/
    ├── main.cpp           # Entry point + overlay init
    ├── console.cpp/.h      # ImGui console window
    ├── executor.cpp/.h     # Lua execution engine
    ├── environment.cpp/.h  # Workspace/Game browser
    ├── attach.cpp/.h       # Process attachment
    └── bridge.cpp/.h       # Lua VM communication

📚 Script Examples

-- Print player count local players = game:GetService("Players") print("Players in server: " .. #players:GetPlayers()) -- Change workspace lighting local lighting = game:GetService("Lighting") lighting.Ambient = Color3.fromRGB(255, 200, 150) lighting.OutdoorAmbient = Color3.fromRGB(100, 100, 255)

🛡️ Disclaimer

This tool is for educational use only on private servers and test environments. Using it on the public Roblox platform may violate their Terms of Service. The author assumes no responsibility for account actions taken by users.


📜 License

MIT License © 2025 [Your Name]

See LICENSE for full text.


⭐ Support

Drop a ⭐ if this helps your development workflow.

Questions? Open an issue.


Made with ❤️ by developers, for developers.
```

关于 About

🛠 Lua script debugging console for Roblox Studio developers. Execute, inspect, test — in real time. MIT License.
debuggerdev-toolsgame-devimguiluamit-licenseoverlayrobloxwindows

语言 Languages

提交活跃度 Commit Activity

代码提交热力图
过去 52 周的开发活跃度
5
Total Commits
峰值: 5次/周
Less
More

核心贡献者 Contributors