🍷 -- // Leave a like or Follow \\ -- 🍷 -- load the Liblary local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/GCxF-Pjk/For-Gui-Maker-Aux-Hub/refs/heads/main/Main%20Liblary/Lime.lua"))() -- create a window local Main = Library:Window("Lime Liblary") -- button Main:Button("Click Me", function() print("Button Clicked!") end) -- toggle Main:Toggle("Rizz", function(state) print("Rizzing:", state) end) -- textbox Main:Textbox("Enter Name", "Type here...", function(text) print("You typed:", text) end) -- slider Main:Slider("WalkSpeed", 10, 100, false, function(value) print("WalkSpeed set to:", value) end) -- dropdown Main:Dropdown("Choose Tool", {"CDK", "Soul Guitar", "Anchor"}, function(selected) print("You chose:", selected) end)