Advertisement
Meliodas0_0

UI library

Jan 20th, 2020
2,157
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.75 KB | None | 1 0
  1.  
  2. #1Brick 11-16-2019, 07:19 PM (This post was last modified: 11-16-2019, 07:23 PM by excu.)
  3. excu
  4. Hating myself most likely
  5. *****
  6. VIP
  7. Posts: 192
  8. Threads: 18
  9. Joined: Nov 2018
  10. Reputation: 1
  11. Info:
  12.  
  13. A full-blown UI Library that is powerful yet simple (excu: i would call it decent..)
  14. Not only does it have the ability to make the normal buttons, labels, text boxes, but it can also make toggleable buttons and dropdowns
  15. There are some drawbacks however, issues that I currently do not know how to fix:
  16. Requires user to execute script 2 times if using a free exploit? (wtf)
  17. There are 2 versions, a free exploit version and paid exploit version
  18. This means if a developer is planning to get the maximum audience, they will have to convert their script so it works on both. (Assuming you are going to use this library haha)
  19. It is completely open-source so if you wish to edit it to fit your needs, feel free.
  20. You DON'T have to give credit, I just want to see what projects come out of this!
  21.  
  22. Quick Disclaimer: (I haven't created anything of this. THIS IS ALL MADE BY Someone Insane#7688, not me I'm just posting this for him and I'm struggling to make this thread lol)
  23. Here are the links:
  24. Paid Exploit Version: https://pastebin.com/raw/eKwyeQa0
  25. Free Exploit Version: https://pastebin.com/raw/MKc92Crw
  26. Function Explanation + Important Stuff: https://pastebin.com/raw/fCXUHUpi (PLEASE READ THIS)
  27.  
  28. I can't wait to see what projects come out of this!
  29. Examples & Images:
  30.  
  31. Code:
  32. -- Paid Exploit Library Example
  33. local library = loadstring(game:HttpGet("https://pastebin.com/raw/eKwyeQa0", true))()
  34.  
  35. local tab1 = library:CreateTab("Test", true)
  36. local button = library:MakeButton(tab1,"Button",function(button)
  37. print ("Hi")
  38. end)
  39. local toggle = library:MakeToggle(tab1,"Toggle",false,function(toggle)
  40. print(toggle.Text)
  41. end)
  42. local text = library:MakeLabel(tab1,"Gay label")
  43. local box = library:MakeBox(tab1,"Text Box","Default text",function(box)
  44. print (box.Text)
  45. end)
  46. local dropdown = library:MakeDropdown(tab1,"Dropdown",{"Ok","Ok","Ok"},"Ok",function(dropdown)
  47. print (dropdown.Text)
  48. end)
  49.  
  50. local tab2 = library:CreateTab("Test", false)
  51. local button = library:MakeButton(tab2,"Button",function(button)
  52. print ("Hi")
  53. end)
  54. local toggle = library:MakeToggle(tab2,"Toggle",false,function(toggle)
  55. print(toggle.Text)
  56. end)
  57. local text = library:MakeLabel(tab2,"Gay label")
  58. local box = library:MakeBox(tab2,"Text Box","Default text",function(box)
  59. print (box.Text)
  60. end)
  61. local dropdown = library:MakeDropdown(tab2,"Dropdown",{"Ok","Ok","Ok"},"Ok",function(dropdown)
  62. print (dropdown.Text)
  63. end)
  64.  
  65. local tab3 = library:CreateTab("Test", false, Color3.new(0,.7,.5))
  66. local button = library:MakeButton(tab3,"Button",function(button)
  67. print ("Hi")
  68. end)
  69. local toggle = library:MakeToggle(tab3,"Toggle",false,function(toggle)
  70. print(toggle.Text)
  71. end)
  72. local text = library:MakeLabel(tab3,"Gay label")
  73. local box = library:MakeBox(tab3,"Text Box","Default text",function(box)
  74. print (box.Text)
  75. end)
  76. local dropdown = library:MakeDropdown(tab3,"Dropdown",{"Ok","Ok","Ok"},"Ok",function(dropdown)
  77. print (dropdown.Text)
  78. end)
  79.  
  80.  
  81. Code:
  82. -- Free Exploit Library Example
  83. spawn(function()
  84. loadstring(game:HttpGet("https://pastebin.com/raw/MKc92Crw", true))()
  85. end)
  86.  
  87. local tab1 = CreateTab("Test", true)
  88. local button = MakeButton(tab1,"Button",function(button)
  89. print ("Hi")
  90. end)
  91. local toggle = MakeToggle(tab1,"Toggle",false,function(toggle)
  92. print(toggle.Text)
  93. end)
  94. local text = MakeLabel(tab1,"Gay label")
  95. local box = MakeBox(tab1,"Text Box","Default text",function(box)
  96. print (box.Text)
  97. end)
  98. local dropdown = MakeDropdown(tab1,"Dropdown",{"Ok","Ok","Ok"},"Ok",function(dropdown)
  99. print (dropdown.Text)
  100. end)
  101.  
  102. local tab2 = CreateTab("Test", false)
  103. local button = MakeButton(tab2,"Button",function(button)
  104. print ("Hi")
  105. end)
  106. local toggle = MakeToggle(tab2,"Toggle",false,function(toggle)
  107. print(toggle.Text)
  108. end)
  109. local text = MakeLabel(tab2,"Gay label")
  110. local box = MakeBox(tab2,"Text Box","Default text",function(box)
  111. print (box.Text)
  112. end)
  113. local dropdown = MakeDropdown(tab2,"Dropdown",{"Ok","Ok","Ok"},"Ok",function(dropdown)
  114. print (dropdown.Text)
  115. end)
  116.  
  117. local tab3 = CreateTab("Test", false, Color3.new(0,.7,.5))
  118. local button = MakeButton(tab3,"Button",function(button)
  119. print ("Hi")
  120. end)
  121. local toggle = MakeToggle(tab3,"Toggle",false,function(toggle)
  122. print(toggle.Text)
  123. end)
  124. local text = MakeLabel(tab3,"Gay label")
  125. local box = MakeBox(tab3,"Text Box","Default text",function(box)
  126. print (box.Text)
  127. end)
  128. local dropdown = MakeDropdown(tab3,"Dropdown",{"Ok","Ok","Ok"},"Ok",function(dropdown)
  129. print (dropdown.Text)
  130. end)
  131.  
  132. [Image: c8jVr8Lmcn.gif]
  133.  
  134. Join the Discord Server for updates or more information (It is your choice)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement