ShadyHub

Pressure washing simulator

Feb 24th, 2023
259
-1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 1
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. local Window = OrionLib:MakeWindow({Name = "BebediHub | Pressure Washing SImulator!", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  3. local Tab = Window:MakeTab({
  4. Name = "Main",
  5. Icon = "rbxassetid://4483345998",
  6. PremiumOnly = false
  7. })
  8.  
  9. Tab:Label("Main | Be sure to equip your pressure washer!)
  10.  
  11. Tab:Label("Wash a little bit of something to update your money!")
  12.  
  13. Tab:Checkbox("Infinite Money", false, function(bool)
  14. while bool do wait() -- If it's true, it prints "true"
  15. print(bool)
  16. end
  17. end)
  18.  
  19. Tab:Button("Refill Water", function()
  20. print("Automatically refills your water tank")
  21. end)
  22. Tab:Label("Clean | Be sure to equip your pressure washer!")
  23. Tab:Label("Clean area | Doesnt actually cleans just makes it so you go to next area")
  24. local Dropdown = Tab:Dropdown("Autoclean", {"Stop", "Spawn", "Garden"}, function(SelectedButton)
  25. print(SelectedButton)
  26. end)
  27. Dropdown:Button("Mansion")
  28. Dropdown:Button("School")
  29. Dropdown:Button("Airport")
  30. Dropdown:Button("Laborty")
  31. Dropdown:Button("Artic")
  32. Dropdown:Button("Castle")
  33. Dropdown:Button("Mars")
  34. Dropdown:Button("Cleandromeda")
  35. Dropdown:Button("Bank")
  36. Dropdown:Button("Jewelry")
  37. Dropdown:Button("Titanic")
  38.  
  39. local Tab1 = Window:MakeTab({
  40. Name = "Credits",
  41. Icon = "rbxassetid://4483345998",
  42. PremiumOnly = false
  43. })
  44. Tab:Label("Credits")
  45. Tab:Label("Originally By Bebedi#9960")
  46. Tab:Label("Originally By BebediHub")
  47. Tab:Label("Recreated By TheMFWithNoFriends#7499")
  48. Tab:Label("Recreated By ShadyHub")
  49. Tab:Label("Join The Discord Below")
  50. Tab:Button("https://discord.gg/ArKmNgwXHV", function()
  51. print("Discord Server Link")
  52. end)
Advertisement
Add Comment
Please, Sign In to add comment