Legend_Dev

wallyHubV3Documentation

Apr 21st, 2020
81
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.03 KB | None | 0 0
  1. local library = loadstring(game:HttpGet(('https://pastebin.com/raw/pBJrQGB2')))()
  2.  
  3. local w = library:CreateWindow("Window")
  4.  
  5. local b = w:CreateFolder("Folder")
  6.  
  7. b:Label("Pretty Useless NGL",Color3.fromRGB(38,38,38),Color3.fromRGB(0,216,111)) --BgColor,TextColor
  8.  
  9. b:Button("Button",function()
  10. print("Elym Winning")
  11. end)
  12.  
  13. b:Toggle("Toggle",function(bool)
  14. shared.toggle = bool
  15. print(shared.toggle)
  16. end)
  17.  
  18. b:Slider("Slider",10,function(value) --MaxValue
  19. print(value)
  20. end)
  21.  
  22. b:Dropdown("Dropdown",{"A","B","C"},function(mob)
  23. print(mob)
  24. end)
  25.  
  26. b:Bind("Bind",function()
  27. print("Yes")
  28. end)
  29.  
  30. b:ColorPicker("ColorPicker",Color3.fromRGB(255,0,0),function(color)
  31. print(color)
  32. end)
  33.  
  34. b:Box("Box","number",function(value) -- "number" or "string"
  35. print(value)
  36. end)
  37.  
  38. b:DestroyGUI()
  39.  
  40. --Example of refresh
  41.  
  42. --[[local label = b:Label("Hi",Color3.fromRGB(255,0,0),Color3.fromRGB(0,255,0))
  43.  
  44. label:Refresh("Not epic")
  45.  
  46. local dropdown = b:Dropdown("Hi",{"A","B"})
  47.  
  48. dropdown:Refresh({"A","B","C"})
  49. ]]
Add Comment
Please, Sign In to add comment