Advertisement
DuperBsd

........

Jan 26th, 2023
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.06 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2.  
  3.  
  4. local Window = OrionLib:MakeWindow({Name = "pet simulatorx dupe + more", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  5.  
  6. --[[
  7. Name = <psx gui by BADGEFF>
  8. HidePremium = <false>
  9. SaveConfig = <true>
  10. ConfigFolder = </storage/emulated/BADGEFF.GUI>
  11. IntroEnabled = <true>
  12. IntroText = <dupe>
  13. IntroIcon = <https://images.app.goo.gl/p5k8RLdQFX2b5mqC9>
  14. Icon = <https://images.app.goo.gl/eCS1LSCxaTijGjee6>
  15. CloseCallback = <function>
  16. ]]
  17.  
  18.  
  19.  
  20. local Tab = Window:MakeTab({
  21. Name = "dupe",
  22. Icon = "rbxassetid://4483345998",
  23. PremiumOnly = false
  24. })
  25.  
  26. --[[
  27. Name = <dupe>
  28. Icon = <https://linksharing.samsungcloud.com/mwqFGJwQnAgg>
  29. PremiumOnly = <false>
  30. ]]
  31.  
  32.  
  33. local Section = Tab:AddSection({
  34. Name = "DUPE NOW"
  35. })
  36.  
  37. --[[
  38. Name = <DUPE NOW>
  39. ]]
  40.  
  41.  
  42.  
  43. OrionLib:MakeNotification({
  44. Name = "Title!",
  45. Content = "Notification content... what will it say??",
  46. Image = "rbxassetid://4483345998",
  47. Time = 5
  48. })
  49.  
  50. --[[
  51. Title = <PLS DEPOSIT ALL YOU PETS AND GEMS FIRST!>
  52. Content = <PLS DEPOSIT ALL GEMS OR PETS FOR WORKING a!>
  53. Image = <https://images.app.goo.gl/p5k8RLdQFX2b5mqC9> - The icon of the notification.
  54. Time = <0.2>
  55. ]]
  56.  
  57.  
  58.  
  59. Tab:AddButton({
  60. Name = "DUPE NOW!",
  61. Callback = function()
  62. print("button pressed")
  63. end
  64. })
  65.  
  66. --[[
  67. Name = <DUPE NOW>
  68. Callback = <loadstring(game:HttpGet("https://pastebin.com/raw/3f2diQd6", true))()>", true))()>
  69. ]]
  70.  
  71.  
  72.  
  73.  
  74. Tab:AddToggle({
  75. Name = "This is a dupe Script!",
  76. Default = true,
  77. Callback = function(Value)
  78. print(Value)
  79. end
  80. })
  81.  
  82. --[[
  83. Name = <DUPE>
  84. Default = <true>
  85. Callback = <loadstring(game:HttpGet("https://pastebin.com/raw/3f2diQd6", true))()>
  86. ]]
  87.  
  88.  
  89.  
  90. CoolToggle:Set(true)
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97. Tab:AddColorpicker({
  98. Name = "RED",
  99. Default = Color3.fromRGB(265, 0, 0),
  100. Callback = function(Value)
  101. print(Value)
  102. end
  103. })
  104.  
  105. --[[
  106. Name = <RED>
  107. Default = <color3>
  108. Callback = <loadstring(game:HttpGet("https://pastebin.com/raw/3f2diQd6", true))()>
  109. ]]
  110.  
  111.  
  112.  
  113.  
  114.  
  115. ColorPicker:Set(Color3.fromRGB(265,265,265))
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122. Tab:AddSlider({
  123. Name = "SPEED",
  124. Min = 1,
  125. Max = 20,
  126. Default = 5,
  127. Color = Color3.fromRGB(265,265,265),
  128. Increment = 1,
  129. ValueName = "DUPE",
  130. Callback = function(Value)
  131. print(Value)
  132. end
  133. })
  134.  
  135. --[[
  136. Name = <SPEED>
  137. Min = <1>
  138. Max = <20>
  139. Increment = <5>
  140. Default = <1>
  141. ValueName = <1-20>
  142. Callback = <loadstring(game:HttpGet("https://pastebin.com/raw/97ps5jKw", true))() > - The function of the slider.
  143. ]]
  144.  
  145.  
  146.  
  147.  
  148.  
  149.  
  150. Slider:Set(1)
  151.  
  152.  
  153.  
  154.  
  155.  
  156.  
  157.  
  158.  
  159. Tab:AddLabel("SOON")
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166. CoolLabel:Set("Coiming soon!")
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174. Tab:AddParagraph(DUPE","DUPE NEW")
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181. CoolParagraph:Set("DUPE New!", "New DUPE Content!")
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190. Tab:AddTextbox({
  191. Name = "tutorial",
  192. Default = "tutorial:
  193. 1.click dupe
  194. 2.wait for the Timer
  195. 3.wait for kick than rejoin!
  196. 4.duped!",
  197. TextDisappear = true,
  198. Callback = function(Value)
  199. print(Value)
  200. end
  201. })
  202.  
  203. --[[
  204. Name = <TUTORIAL>
  205. Default = <5>
  206. TextDisappear = <false>
  207. Callback = <function>
  208. ]]
  209.  
  210.  
  211.  
  212.  
  213.  
  214.  
  215. Tab:AddBind({
  216. Name = "BADGEFF",
  217. Default = Enum.KeyCode.E,
  218. Hold = true,
  219. Callback = function()
  220. print("press")
  221. end
  222. })
  223.  
  224. --[[
  225. Name = <BADGEFF>
  226. Default = <BADGEFF63V>
  227. Hold = <true>
  228. Callback = <function>
  229. ]]
  230.  
  231.  
  232.  
  233.  
  234.  
  235.  
  236.  
  237.  
  238. Bind:Set(Enum.KeyCode.E)
  239.  
  240.  
  241.  
  242.  
  243.  
  244.  
  245.  
  246.  
  247.  
  248.  
  249.  
  250.  
  251. Tab:AddDropdown({
  252. Name = "DUPE",
  253. Default = "1",
  254. Options = {"1", "2", "3"},
  255. Callback = function(Value)
  256. print(Value)
  257. end
  258. })
  259.  
  260. --[[
  261. Name = <DUPE>
  262. Default = <1>
  263. Options = <1= GEMS DUPE 2= DUPE PETS 3= DUPE ALL>
  264. Callback = <loadstring(game:HttpGet("https://pastebin.com/raw/97ps5jKw", true))() >
  265. ]]
  266.  
  267.  
  268.  
  269.  
  270.  
  271.  
  272.  
  273.  
  274.  
  275.  
  276.  
  277.  
  278.  
  279.  
  280. Dropdown:Refresh(List<table>,true)
  281.  
  282.  
  283.  
  284.  
  285.  
  286.  
  287.  
  288.  
  289.  
  290.  
  291.  
  292.  
  293.  
  294.  
  295.  
  296.  
  297.  
  298. Dropdown:Set("2")
  299.  
  300.  
  301.  
  302.  
  303.  
  304.  
  305.  
  306.  
  307.  
  308.  
  309. OrionLib:Init(3312621436)
  310.  
  311.  
  312.  
  313.  
  314.  
  315.  
  316.  
  317.  
  318.  
  319.  
  320.  
  321.  
  322.  
  323. Tab1:AddToggle({
  324. Name = "DUPE",
  325. Default = true,
  326. Save = true,
  327. Flag = "DUPE"
  328. })
  329.  
  330. print(OrionLib.Flags["DUPE"].Value)
  331.  
  332.  
  333.  
  334. OrionLib:Destroy(true)
  335.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement