Advertisement
DankGreenMoney

Wizard uilib

Apr 17th, 2022
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local Library = loadstring(Game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard"))()
  2.  
  3. local PhantomForcesWindow = Library:NewWindow("Combat")
  4.  
  5. local KillingCheats = PhantomForcesWindow:NewSection("Kill Options")
  6.  
  7. KillingCheats:CreateButton("Button", function()
  8. print("HI")
  9. end)
  10.  
  11. KillingCheats:CreateTextbox("TextBox", function(text)
  12. print(text)
  13. end)
  14.  
  15. KillingCheats:CreateToggle("Auto Ez", function(value)
  16. print(value)
  17. end)
  18.  
  19. KillingCheats:CreateDropdown("DropDown", {"Hello", "World", "Hello World"}, 2, function(text)
  20. print(text)
  21. end)
  22.  
  23. KillingCheats:CreateSlider("Slider", 0, 100, 15, false, function(value)
  24. print(value)
  25. end)
  26. KillingCheats:CreateColorPicker("Picker", Color3.new(255, 255, 255), function(value)
  27. print(value)
  28. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement