Advertisement
Dabrazilliandev

Real working script tottaly

Dec 22nd, 2022 (edited)
515
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/GemstoneDev/Wally-V3-Backup/main/script/main.lua')))()
  2.  
  3. local w = library:CreateWindow("not working script gui ngl") -- Creates the window
  4.  
  5. local b = w:CreateFolder("not work get out") -- Creates the folder(U will put here your buttons,etc)
  6.  
  7. b:Label("Pretty Useless NGL",{
  8.     TextSize = 25; -- Self Explaining
  9.     TextColor = Color3.fromRGB(255,255,255); -- Self Explaining
  10.     BgColor = Color3.fromRGB(69,69,69); -- Self Explaining
  11.    
  12. })
  13.  
  14. b:Button("jump",function()
  15.     print("Skid")
  16. end)
  17.  
  18. b:Toggle("Toggle",function(bool)
  19.     shared.toggle = bool
  20.     print(shared.toggle)
  21. end)
  22.  
  23. b:Slider("speed",{
  24.     min = 50; -- min value of the slider
  25.     max = 50; -- max value of the slider
  26.     precise = true; -- max 2 decimals
  27. },function(value)
  28.     print(value)
  29. end)
  30.  
  31. b:Dropdown("Dropdown",{"just a button","just a button","dont care"},true,function(mob) --true/false, replaces the current title "Dropdown" with the option that t
  32.     print(mob)
  33. end)
  34.  
  35. b:Bind("Bind",Enum.KeyCode.C,function() --Default bind
  36.     print("Yes")
  37. end)
  38.  
  39. b:ColorPicker("ColorPicker",Color3.fromRGB(255,0,0),function(color) --Default color
  40.     print(color)
  41. end)
  42.  
  43. b:Box("okay","97",function(value) -- "number" or "string"
  44.     print(value)
  45. end)
  46.  
  47. b:DestroyGui()
  48.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement