loadstring(game:HttpGet("https://raw.githubusercontent.com/randomuser832/R22222222222222/refs/heads/main/SkidzUIlibv2"))() local SkidzWare = _G.SkidzWare local window = SkidzWare:CreateWindow({ Name="SkidzWare", Size=UDim2.new(0,500,0,350), Position=UDim2.new(0.25,0,0.25,0), AccentColor=Color3.fromRGB(0,200,255) }) local mainTab = window:CreateTab("Main") local settingsTab = window:CreateTab("Settings") local mainSection = window:CreateSection(mainTab,"Main Section") local settingsSection = window:CreateSection(settingsTab,"Settings Section") window:CreateButton(mainSection,"Click Me",function() SkidzWare:Notify("Button Clicked","You pressed the button!",3) end) window:CreateToggle(mainSection,"Enable Feature",false,function(state) SkidzWare:Notify("Toggle Changed","Feature is now "..tostring(state),3) end) window:CreateSlider(mainSection,"Adjust Value",0,100,50,function(value) SkidzWare:Notify("Slider Changed","Value is now "..tostring(value),1) end) window:CreateButton(settingsSection,"Press me",function() SkidzWare:Notify("Button Clicked","You pressed the button!",3) end) SkidzWare:Notify("Welcome!","This is a test notification",5)