Advertisement
NiceBBMBThai

Gui Free Icon13

Apr 21st, 2021
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.06 KB | None | 0 0
  1. _G.Settings = {
  2. ['Name'] = 'Some random template',
  3. ['Intro'] = true,
  4. ['Keybind'] = 'G'
  5. }
  6.  
  7. local Library = loadstring(game:HttpGet("https://pastebin.com/raw/QPehPJ6m", true))()
  8.  
  9.  
  10. local Tab1 = Library:CreateTab('Tab1')
  11.  
  12. Tab1:Label('Epik Label')
  13. Tab1:Button('Epik Button', function()
  14. print("OMG, YOU PRESSED THE BUTTON! YOU'RE SO SMART!")
  15. end)
  16. Tab1:Toggle('Epik Toggle', false, function(bool)
  17. print(bool)
  18. end)
  19. Tab1:TextBox('Epik Textbox', 'Placeholder idk', function(output)
  20. print(output)
  21. end)
  22. Tab1:Dropdown('Epik Dropdown', {'Epic', 'Right?', 'Skillz'}, function(output)
  23. print(output)
  24. end)
  25. Tab1:Label('Everything is epik, totes.')
  26.  
  27. local Tab2 = Library:CreateTab('Tab2')
  28. Tab2:Label('OMG ANOTHER TAB!')
  29.  
  30.  
  31. --[[
  32. Refresh example:
  33. ]]
  34. local TabwithRefresh = Library:CreateTab('TabwithRefresh')
  35.  
  36. local Dropdown = TabwithRefresh:Dropdown('Epik Dropdown', {'Epic', 'Right?', 'Skillz'}, function(output)
  37. print(output)
  38. end)
  39.  
  40. wait(10)
  41.  
  42. Dropdown:Refresh('OMG REFRESH', {'NANI', 'WHAT IS', 'THIS MAGIC?'}, function(output)
  43. print(output)
  44. print('lol')
  45. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement