Advertisement
VISUAL_PET_SCRIPT1

TRADESCAM

Apr 28th, 2023 (edited)
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. local Window = OrionLib:MakeWindow({Name = "[📜QUESTS] Pet Simulator X! 🐾", HidePremium = false, IntroEnabled = false, IntroText = "Pet Sim X", SaveConfig = true, ConfigFolder = "OrionTest"})
  3.  
  4.  
  5. -- Tabs
  6. local ScamTab = Window:MakeTab({
  7. Name = "Trade Scam",
  8. Icon = "rbxassetid://4483345998",
  9. PremiumOnly = false
  10. })
  11.  
  12. local FarmTab = Window:MakeTab({
  13. Name = "Auto Farm",
  14. Icon = "rbxassetid://4483345998",
  15. PremiumOnly = false
  16. })
  17.  
  18. local CreditsTab = Window:MakeTab({
  19. Name = "Credits",
  20. Icon = "rbxassetid://4483345998",
  21. PremiumOnly = false
  22. })
  23.  
  24.  
  25. -- Toggles
  26. ScamTab:AddToggle({
  27. Name = "Enable Trade Scam",
  28. Default = false,
  29. Callback = function(Value)
  30. print(Value)
  31. end
  32. })
  33.  
  34.  
  35. FarmTab:AddToggle({
  36. Name = "Enable Auto Farm",
  37. Default = false,
  38. Callback = function(Value)
  39. print(Value)
  40. end
  41. })
  42.  
  43. FarmTab:AddSlider({
  44. Name = "Auto Farm Speed",
  45. Min = 0,
  46. Max = 20,
  47. Default = 5,
  48. Color = Color3.fromRGB(255,255,255),
  49. Increment = 1,
  50. ValueName = "",
  51. Callback = function(Value)
  52. print(Value)
  53. end
  54. })
  55.  
  56.  
  57. -- Text
  58. CreditsTab:AddLabel("Created by Sapi#9995 on Discord")
  59. CreditsTab:AddLabel("Up to date with most recent update")
  60.  
  61. ScamTab:AddLabel("Wait 5 seconds to remove pets after enabling")
  62.  
  63.  
  64.  
  65. OrionLib:Init()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement