Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 25 additions & 37 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,37 +1,25 @@
<!--<h1 align="center">WindUI</h1> -->

<!--
<picture>
<source srcset="docs/banner-dark.webp" media="(prefers-color-scheme: dark)">
<source srcset="docs/banner-light.webp" media="(prefers-color-scheme: light)">
<img src="docs/banner-light.webp" alt="WindUI Banner">
</picture>-->

<img src="docs/banner-new.webp" alt="WindUI Banner">

> [!WARNING]
> This WindUI was not inspired by, and the name has nothing to do with UI Frameworks

> [!WARNING]
> WindUI is currently in Beta.
> This project is still under active development. Bugs, issues, and unstable features may occur. We’re constantly working on improvements, so please be patient and report any problems you encounter.

## Credits

#### Icons (https://github.com/Footagesus/Icons)

- [Lucide-Icons](https://github.com/lucide-icons/lucide)
- [Craft Icons](https://www.figma.com/community/file/1415718327120418204)
- [Geist Icons](https://vercel.com/geist/icons)
- [Solar Icons](https://icones.js.org/collection/solar)
- [SF Symbols](https://sf-symbols-one.vercel.app/)

### Links

- [Discord Server](https://discord.gg/ftgs-development-hub-1300692552005189632)
- [Documentation](https://Footagesus.github.io/WindUI-Docs/)
- [Installation](https://footagesus.github.io/WindUI-Docs/docs/installation)
- [Example](/main_example.lua) (wip)
```luau
loadstring(game:HttpGet('https://raw.githubusercontent.com/Footagesus/WindUI/refs/heads/main/main_example.lua'))()
```
local player = game.Players.LocalPlayer
local menu = script.Parent

for _, button in pairs(menu:GetChildren()) do

if button:IsA("ImageButton") then

button.MouseButton1Click:Connect(function()

local character = player.Character or player.CharacterAdded:Wait()
local root = character:WaitForChild("HumanoidRootPart")

local warpPart = workspace:FindFirstChild(button.Name)

if warpPart then
root.CFrame = warpPart.CFrame + Vector3.new(0, 3, 0)
else
warn("ไม่พบ Part ชื่อ "..button.Name)
end

end)

end

end
Loading