local Library = loadstring(Game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard"))() local PhantomForcesWindow = Library:NewWindow("Combat") local KillingCheats = PhantomForcesWindow:NewSection("Kill Options") KillingCheats:CreateButton("Button", function() print("HI") end) KillingCheats:CreateTextbox("TextBox", function(text) print(text) end) KillingCheats:CreateToggle("Auto Ez", function(value) print(value) end) KillingCheats:CreateDropdown("DropDown", {"Hello", "World", "Hello World"}, 2, function(text) print(text) end) KillingCheats:CreateSlider("Slider", 0, 100, 15, false, function(value) print(value) end) KillingCheats:CreateColorPicker("Picker", Color3.new(255, 255, 255), function(value) print(value) end)