🌿 LuauAPI is owned by skidder.lol
🙏 Thanks for using my source! If you find it helpful, consider giving credit and sharing your support.
An executor made for the web version of Roblox.
LuauAPI uses a common method of writing unsigned bytecode into a Roblox core module script to manage execution. It's more stable and flexible than most executors that utilize this method.
If you’re going to use my source code, please give credit and respect the license. Don't be like those who have used my entire source code without attribution or have distributed it as their own.
- Fast Execution: Enjoy quick script execution without lag.
- Multi-Instance Compatibility: Run multiple instances seamlessly.
- Script Support: Executes most scripts, including Lua Armor scripts.
- Efficient Virtual Filesystem: Extremely fast and syncs with external files.
- Performance: No in-game performance impact and minimal CPU usage.
- Custom Functions: Includes functions like HttpSpy, getting the real address of an instance, and setting/getting globals across clients.
The current method of adding HttpGet to game
may interfere with some scripts, such as dex. To execute dex, run the following script:
getgenv().game = workspace.Parent
This will remove HttpGet from game
. You can also use the modified version of dex made for Xeno inside the released files.
This project uses the following libraries:
Dependencies are managed with vcpkg. Install them with this command:
vcpkg install xxhash zstd openssl
The proper version of httplib is already included in this project.
To set up LuauAPI on your local machine, follow these steps:
-
Clone the repository:
git clone https://github.com/yourusername/LuauAPI.git cd LuauAPI
-
Install dependencies using vcpkg:
vcpkg install xxhash zstd openssl
-
Build the project:
mkdir build cd build cmake .. -DCMAKE_TOOLCHAIN_FILE=[path to vcpkg]/scripts/buildsystems/vcpkg.cmake cmake --build . --config Release
To use LuauAPI, follow these instructions:
- Launch Roblox and navigate to the desired game.
- Open LuauAPI.
- Insert your scripts into the designated input area.
- Execute the script and enjoy!
Here’s a simple example of a script you might run:
-- Example script to print Hello, World!
print("Hello, World!")
Join our community for support, updates, and collaboration:
- Discord: Join our server
- Issues: If you encounter any bugs, please report them on GitHub Issues.
This project is licensed under the MIT License. See the LICENSE file for more details.