Advertisement
Kitty-Admin

Wally Ui

Jul 3rd, 2021
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.36 KB | None | 0 0
  1. _G.ToggleColor = Color3.fromRGB(255,0,0)
  2. _G.ButtonColor = Color3.fromRGB(0,255,0)
  3. _G.SliderColor = Color3.fromRGB(0,0,255)
  4.  
  5. local library = loadstring(game:HttpGet(('https://pastebin.com/raw/FsJak6AT')))()
  6.  
  7. local w = library:CreateWindow("Window")
  8.  
  9. local b = w:CreateFolder("Folder")
  10.  
  11. b:Label("Pretty Useless NGL",Color3.fromRGB(38,38,38),Color3.fromRGB(0,216,111)) --BgColor,TextColor
  12.  
  13. b:Button("Button",function()
  14.     print("Elym Winning")
  15. end)
  16.  
  17. b:Toggle("Toggle",function(bool)
  18.     shared.toggle = bool
  19.     print(shared.toggle)
  20. end)
  21.  
  22. b:Slider("Slider",10,30,true,function(value) --MinValue,MaxValue,Precise
  23.     print(value)
  24. end)
  25.  
  26. b:Dropdown("Dropdown",{"A","B","C"},true,function(mob) --Replace the Dropdown name with the selected one(A,B,C)
  27.     print(mob)
  28. end)
  29.  
  30. b:Bind("Bind",Enum.KeyCode.C,function() --Default bind
  31.     print("Yes")
  32. end)
  33.  
  34. b:ColorPicker("ColorPicker",Color3.fromRGB(255,0,0),function(color)
  35.     print(color)
  36. end)
  37.  
  38. b:Box("Box","number",function(value) -- "number" or "string"
  39.     print(value)
  40. end)
  41.  
  42. b:DestroyGUI()
  43.  
  44. b:GuiSettings() -- Use it if you want to let people customize toggles,buttons and sliders color
  45.  
  46. --Example of refresh
  47.  
  48. --[[local label = b:Label("Hi",Color3.fromRGB(255,0,0),Color3.fromRGB(0,255,0))
  49.  
  50. label:Refresh("Not epic")
  51.  
  52. local dropdown = b:Dropdown("Hi",{"A","B"})
  53.  
  54. dropdown:Refresh({"A","B","C"})
  55. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement