Installation
Install WindUI and Edit it
Clone Repository
First, clone the WindUI repository from GitHub to your local machine.
git clone https://github.com/Footagesus/WindUI.git
This command will create a copy of the WindUI project in your working directory, allowing you to modify and customize it as needed.
Bundle WindUI
Once everything is set up, you can bundle WindUI:
-
For development, run:
npm run dev
-
For production build, run:
npm run build
-
For development live-build, run:
npm run live-build
This will start a local build server at http://localhost:8642. It automatically build your changes and serves a ready-to-use development bundle, so you can instantly test it in Roblox without manual rebuilding.
Example usage in Roblox:
loadstring(game:HttpGet("http://localhost:8642/dist/main.lua"))()