Advertisement
Ihaveashortname

WALLY LIB

Feb 12th, 2020
222
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.88 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://pastebin.com/raw/eWKgbdix", true))()
  2. local w = library:CreateWindow('NAME') --Change NAME for the title of script
  3. w:Section('CHANGE THIS TO ANYTHING') --This is a header
  4.  
  5.  
  6. w:Button("NAME BUTTON", function() --This is the button that holds your script
  7. --Put Script Here
  8. end)
  9.  
  10. w:Button("Name Button2", function() --same as first button
  11. --Put Script Here
  12. end)
  13.  
  14. w:Button("Button 3", function() --same
  15. --Script Here
  16. end)
  17.  
  18.  
  19. w:Button("Button 4", function()
  20. --Script Here
  21. end)
  22.  
  23. w:Button("Button 5", function()
  24. --Script Here
  25. end)
  26.  
  27. w:Button("Button 6", function()
  28. --Script Here
  29. end)
  30.  
  31. w:Button("Button 7", function()
  32. --Script here
  33. end)
  34.  
  35. w:Button("Button 8", function()
  36.  
  37. end)
  38.  
  39. w:Button("Button 9", function()
  40.  
  41. end)
  42.  
  43. w:Button("Button 10", function()
  44.  
  45. end)
  46.  
  47. w:Label("") --Do what ever you want here just a text label
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement