Advertisement
NiceBBMBThai

Gui Free Icon27

Nov 5th, 2021
34
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. local Fun = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/nightmares.fun-UI-Library/main/source.lua"))()
  2.  
  3. local window = Fun.Create("UI Library")
  4.  
  5. local tab = window:Tab("Leak")
  6.  
  7. local section = tab:Section("Showcase")
  8.  
  9. section:Toggle("Toggle", function(s)
  10. print(s)
  11. end)
  12.  
  13. section:Button("Button", function()
  14.  
  15. end)
  16.  
  17. section:Label("Label")
  18.  
  19. section:KeyBind("KeyBind", Enum.KeyCode.E, function()
  20.  
  21. end)
  22.  
  23. section:Slider("Slider", 16, 200, function()
  24.  
  25. end)
  26.  
  27. section:Dropdown("Dropdown", {"1", "2", "3"}, function()
  28.  
  29. end)
  30.  
  31. section:TextBox("Textbox", function()
  32.  
  33. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement