kooggy

ee

Oct 1st, 2022
28
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. -- Library Core Loadstring
  2. local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/slf0Dev/Goat-poop/main/Windows%2010%20UI%20Library"))()
  3.  
  4. -- Creating Gui
  5. local MainWindow = Library.Main("GuiName","KeyBind")
  6.  
  7. -- Creating Categories
  8. local Category = MainWindow.Category("Your Text","ImageId","ImageScaleType",Image Transparency)
  9.  
  10.  
  11. --[[
  12. ImageScaleTypes : "Crop" , "Fit" , "Slice" , "Stretch"
  13. ]]
  14.  
  15. -- Creating Folders
  16. local Folder = Category.Folder("TemplateFolder")
  17.  
  18. -- Creating Components
  19.  
  20. -- Creating Labels
  21. local Label = Folder.Label("Your Text")
  22.  
  23. -- Creating Buttons
  24. local Button = Folder.Button("Your Text",function()
  25. print("Pressed")
  26. end)
  27.  
  28. -- Creating Toggles
  29. local Toggle = Folder.Toggle("Your Text",function(bool)
  30. print(bool)
  31. end,DefaultBoolValue)
  32.  
  33. -- Creating Sliders
  34. local Slider = Folder.Slider("Your Text",min,max,function(value)
  35. print(value)
  36. end,DefaultValue,isFloat) --isFloat is boolean
Add Comment
Please, Sign In to add comment