xtbilz

Untitled

Aug 16th, 2021 (edited)
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.86 KB | None | 0 0
  1. local DiscordLib = loadstring(game:HttpGet"https://raw.githubusercontent.com/dawid-scripts/UI-Libs/main/discord%20lib.txt")()
  2.  
  3. local win = DiscordLib:Window("XTBILZ HUB")
  4.  
  5. local serv = win:Server("Preview", "")
  6.  
  7. local btns = serv:Channel("Buttons")
  8.  
  9. btns:Button("Kill all", function()
  10. DiscordLib:Notification("Notification", "Killed everyone!", "Okay!")
  11. game.Players.LocalPlayer:Kick("จะกดทำควยไรทีหลังอย่ากดอีกนะไอสัด.")
  12. end)
  13.  
  14. btns:Seperator()
  15.  
  16. btns:Button("Get max level", function()
  17. DiscordLib:Notification("Notification", "Max level!", "Okay!")
  18. end)
  19.  
  20. local tgls = serv:Channel("Toggles")
  21.  
  22. tgls:Toggle("Auto-Farm",false, function(bool)
  23. _G.XA = bool
  24. end)
  25. spawn(function()
  26. while wait() do
  27. if _G.XA then
  28. print"XAXA"
  29. end
  30. end
  31. end)
  32.  
  33. local sldrs = serv:Channel("Sliders")
  34.  
  35. local sldr = sldrs:Slider("Slide me!", 0, 1000, 400, function(t)
  36. print(t)
  37. end)
  38.  
  39. sldrs:Button("Change to 50", function()
  40. sldr:Change(50)
  41. end)
  42.  
  43. local drops = serv:Channel("Dropdowns")
  44.  
  45.  
  46. local drop = drops:Dropdown("Pick me!",{"Option 1","Option 2","Option 3","Option 4","Option 5"}, function(bool)
  47. print(bool)
  48. end)
  49.  
  50. drops:Button("Clear", function()
  51. drop:Clear()
  52. end)
  53.  
  54. drops:Button("Add option", function()
  55. drop:Add("Option")
  56. end)
  57.  
  58. local clrs = serv:Channel("Colorpickers")
  59.  
  60. clrs:Colorpicker("ESP Color", Color3.fromRGB(255,1,1), function(t)
  61. print(t)
  62. end)
  63.  
  64. local textbs = serv:Channel("Textboxes")
  65.  
  66. textbs:Textbox("Gun power", "Type here!", true, function(t)
  67. print(t)
  68. end)
  69.  
  70. local lbls = serv:Channel("Labels")
  71.  
  72. lbls:Label("This is just a label.")
  73.  
  74. local bnds = serv:Channel("Binds")
  75.  
  76. bnds:Bind("Kill bind", Enum.KeyCode.RightShift, function()
  77. print("Killed everyone!")
  78. end)
  79.  
  80.  
  81.  
  82.  
  83. win:Server("Main", "http://www.roblox.com/asset/?id=6031075938")
Add Comment
Please, Sign In to add comment