Facebook
From ktosss, 9 Months ago, written in Lua.
Embed
Download Paste or View Raw
Hits: 481
  1. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/batusz/uilibrarys/main/mercury_ui_lib"))()
  2.  
  3. local gui = Library:create{
  4.     Theme = Library.Themes.Serika
  5. }
  6.  
  7. local tab = gui:tab{
  8.     Icon = "rbxassetid://6034996695",
  9.     Name = "Aimbot"
  10. }
  11.  
  12. tab:button({
  13.     Name = "Bytuf",
  14.     Description = "Test",
  15.     Callback = function() end
  16. })
  17.  
  18. tab:keybind({Callback = function()
  19.     gui:prompt()
  20. end,})
  21. tab:dropdown({
  22.     Name = "Dropdown",
  23.     Description = "yeeeeeeeeeeeeeeeeeeeboi",
  24.     StartingText = "Bodypart",
  25.     Items = {
  26.         "Head",
  27.         "Torso",
  28.         "Random"
  29.     }
  30. })
  31. tab:dropdown({
  32.     Name = "yes",
  33.     StartingText = "Number",
  34.     Items = {
  35.         {"One", 1},
  36.         {"Two", 2},
  37.         {"Three", 3}
  38.     },
  39.     Description = "amongu s",
  40.     Callback = function(v)
  41.         print(v, "clicked")
  42.     end,
  43. })
  44. local cum = tab:slider({Callback = function(v)
  45.     gui:set_status(v)
  46. end})
  47.  
  48. tab:textbox({Callback = function(v)
  49.     gui:prompt{Text = v}
  50. end,})
  51.  
  52. tab:color_picker({
  53.     Name = "your mom's color",
  54.     Style = Library.ColorPickerStyles.Legacy,
  55.     Description = "Click to adjust color...",
  56.     Callback = function(color)
  57.         print(color)
  58.     end,
  59. })