Advertisement
Encrypted_Data

wizard

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