local ModuleX = loadstring(game:HttpGet("https://raw.githubusercontent.com/Kyereal/ModuleX-UI-Library/refs/heads/main/Module%20X"))() local UI = ModuleX.new() -- Loading Screen UI:SetLoadingText("Loading ModuleX...") UI:SetCreditsText("kye._real") -- Tabs UI:CreateTab("Universal") UI:CreateTab("Random") -- Buttons UI:AddButton("Universal", "Infinite Yield", function() loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))() end) UI:AddButton("Random", "Print Hey", function() print("Hey") end) -- Toggles UI:AddToggle("Universal", "Auto Farm", false, function(state) if state then print("Auto farm turned ON") -- Toggled else print("Auto farm turned OFF") -- Not Toggled end end) -- Slider Color UI:SetSliderColor("Green") -- Slider UI:AddSlider("Universal", "WalkSpeed", 16, 200, 16, function(value) game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = value end)