local base = "https://github.com/PMLOLHUB/Ui-library/raw/refs/heads/main/" local Library = loadstring(game:HttpGet(base.."UI PMS"))() local Window = Library:CreateWindow("PMS", { ToggleConfig = { Text = "Open UI", Image = "" }, ThemeColor = Color3.fromRGB(210, 180, 140), TextColor = Color3.fromRGB(255, 255, 255), ElementTransparency = 0.1, Logo = "rbxassetid://10747383470" }) local FarmTab = Window:CreateCategory("Farm System", "utensils-crossed") local CombatTab = Window:CreateCategory("Combat", "venetian-mask") local SettingTab = Window:CreateCategory("Settings", "wrench") FarmTab:CreateLabel("Welcome to the Auto Farm System") FarmTab:CreateLabel("Warning: Use at your own risk", Color3.fromRGB(255, 80, 80)) FarmTab:CreateButton("Clear Quests", function() print("Quests reset successfully!") end) FarmTab:CreateButton("Kill Boss", Color3.fromRGB(255, 100, 100), function() print("Attacking the boss!") end) FarmTab:CreateTextbox("Target Player", "Enter player name...", function(text) print("Selected target: " .. text) end) FarmTab:CreateNumberTextbox("View Range", 150, function(value) if value then print("View range set to: " .. value) else warn("Please enter a valid number!") end end) FarmTab:CreateSearchBar("Search items...", function(query) print("Currently searching for: " .. query) end) FarmTab:CreateToggle("Enable Auto Farm", false, function(state) if state then print("Auto Farm Started") else print("Auto Farm Stopped") end end) FarmTab:CreateSlider("WalkSpeed", 16, 200, 16, function(value) print("WalkSpeed adjusted to: " .. value) end) FarmTab:CreateDropdown("Select Monster", {"Slime", "Goblin", "Orc", "Dragon"}, function(option) print("Target monster set to: " .. option) end)