Skip to content
/ LuauAPI Public
forked from LuauDev/LuauAPI

LuauAPI | Modified Xeno Source Code

License

Notifications You must be signed in to change notification settings

am0y/LuauAPI

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

21 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🌿 LuauAPI is owned by skidder.lol

🙏 Thanks for using my source! If you find it helpful, consider giving credit and sharing your support.

🌿 LuauAPI

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.

⚠️ Important Note

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.

🌟 Features

  • 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.

HttpGet Interference

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.

📦 Dependencies

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.

🚀 Installation

To set up LuauAPI on your local machine, follow these steps:

  1. Clone the repository:

    git clone https://github.com/yourusername/LuauAPI.git
    cd LuauAPI
  2. Install dependencies using vcpkg:

    vcpkg install xxhash zstd openssl
  3. Build the project:

    mkdir build
    cd build
    cmake .. -DCMAKE_TOOLCHAIN_FILE=[path to vcpkg]/scripts/buildsystems/vcpkg.cmake
    cmake --build . --config Release

📖 Usage

To use LuauAPI, follow these instructions:

  1. Launch Roblox and navigate to the desired game.
  2. Open LuauAPI.
  3. Insert your scripts into the designated input area.
  4. Execute the script and enjoy!

Example Script

Here’s a simple example of a script you might run:

-- Example script to print Hello, World!
print("Hello, World!")

🤝 Community Support

Join our community for support, updates, and collaboration:

📜 License

This project is licensed under the MIT License. See the LICENSE file for more details.

About

LuauAPI | Modified Xeno Source Code

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 94.0%
  • Lua 3.4%
  • C 2.0%
  • Other 0.6%