Advertisement
Dabrazilliandev

Gui

Feb 28th, 2023
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/AikaV3rm/UiLib/master/Lib.lua')))()
  2.  
  3. local w = library:CreateWindow("Made By Egor On Roblox/ roblox profile = egopka15") -- Creates the window
  4.  
  5. local b = w:CreateFolder("open2") -- Creates the folder(U will put here your buttons,etc)
  6.  
  7. b:Label("Pretty Useless NGL",{
  8. TextSize = 25; -- Self Explaining
  9. TextColor = Color3.fromRGB(255,255,255); -- Self Explaining
  10. BgColor = Color3.fromRGB(69,69,69); -- Self Explaining
  11.  
  12. })
  13.  
  14. b:Button("egors admin",function()
  15. loadstring(game:HttpGet("https://pastebin.com/raw/NDWVxt9T"))();
  16. end)
  17.  
  18. b:Toggle("Toggle",function(bool)
  19. shared.toggle = bool
  20. print(shared.toggle)
  21. end)
  22.  
  23. b:Slider("Slider",{
  24. min = 10; -- min value of the slider
  25. max = 50; -- max value of the slider
  26. precise = true; -- max 2 decimals
  27. },function(value)
  28. print(useless)
  29. end)
  30.  
  31. b:Dropdown("Dropdown",{"A","B","C"},true,function(mob) --true/false, replaces the current title "Dropdown" with the option that t
  32. print(mob)
  33. end)
  34.  
  35. b:Bind("Bind",Enum.KeyCode.C,function() --Default bind
  36. print("Yes")
  37. end)
  38.  
  39. b:ColorPicker("ColorPicker",Color3.fromRGB(255,0,0),function(color) --Default color
  40. print(color)
  41. end)
  42.  
  43. b:Box("Box","number",function(value) -- "number" or "string"
  44. print(value)
  45. end)
  46.  
  47. b:Button("keyboard",function()
  48.  
  49. loadstring(game:HttpGet("https://raw.githubusercontent.com/advxzivhsjjdhxhsidifvsh/mobkeyboard/main/main.txt", true))()
  50. end)
  51.  
  52. --[[
  53. How to refresh a dropdown:
  54. 1)Create the dropdown and save it in a variable
  55. local yourvariable = b:Dropdown("Hi",yourtable,function(a)
  56. print(a)
  57. end)
  58. 2)Refresh it using the function
  59. yourvariable:Refresh(yourtable)
  60. How to refresh a label:
  61. 1)Create your label and save it in a variable
  62. local yourvariable = b:Label("Pretty Useless NGL",{
  63. TextSize = 25; -- Self Explaining
  64. TextColor = Color3.fromRGB(255,255,255);
  65. BgColor = Color3.fromRGB(69,69,69);
  66. })
  67. 2)Refresh it using the function
  68. yourvariable:Refresh("Hello") It will only change the text ofc
  69. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement