Advertisement
2AreYouMental110

placeholder hub

Jul 1st, 2022
787
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.00 KB | None | 0 0
  1. getgenv().placeholder2 = false
  2. getgenv().placeholder1 = false
  3.  
  4. local selectedoption
  5. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))()
  6. local Window = Library.CreateLib("placeholder", "Sentinel")
  7.  
  8. local A = Window:NewTab("placeholder")
  9. local A1 = A:NewSection("placeholder")
  10.  
  11. A1:NewDropdown("placeholder", "placeholder", {"placeholer", "placeholder"}, function(value1)
  12.     selectedoption = value1
  13.     print(value1)
  14. end)
  15.  
  16. A1:NewButton("placeholder", "placeholder", function()
  17.     placeholder
  18. end)
  19.  
  20. A1:NewToggle("placeholder", "placeholder", function(bool)
  21.     getgenv().placeholder1 = bool
  22.     if selectedoption then
  23.         if bool then
  24.             placeholder1()
  25.         end
  26.     end
  27. end)
  28.  
  29. function placeholder2()
  30.     spawn(function()
  31.         while getgenv().placeholder2 do
  32.             print("placeholder")
  33.             wait()
  34.         end
  35.     end)
  36. end
  37.  
  38. function placeholder1()
  39.     print("placeholder")
  40.     wait()
  41. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement