Advertisement
Bacon_Script

untitled

May 30th, 2024
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.14 KB | Gaming | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. local Window = OrionLib:MakeWindow({Name = "Vlorp Script | Adopt Me [5.6]", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  3.  
  4. --[[
  5. Name = <string> - The name of the UI.
  6. HidePremium = <bool> - Whether or not the user details shows Premium status or not.
  7. SaveConfig = <bool> - Toggles the config saving in the UI.
  8. ConfigFolder = <string> - The name of the folder where the configs are saved.
  9. IntroEnabled = <bool> - Whether or not to show the intro animation.
  10. IntroText = <string> - Text to show in the intro animation.
  11. IntroIcon = <string> - URL to the image you want to use in the intro animation.
  12. Icon = <string> - URL to the image you want displayed on the window.
  13. CloseCallback = <function> - Function to execute when the window is closed.
  14. ]]
  15.  
  16. local Tab = Window:MakeTab({
  17. Name = "Dupe Eggs",
  18. Icon = "rbxassetid://4483345998",
  19. PremiumOnly = false
  20. })
  21.  
  22. --[[
  23. Name = <string> - The name of the tab.
  24. Icon = <string> - The icon of the tab.
  25. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  26. ]]
  27.  
  28. Tab:AddTextbox({
  29. Name = "Dupe Egg",
  30. Default = "Egg Name",
  31. TextDisappear = true,
  32. Callback = function(Value)
  33. print(Value)
  34. end
  35. })
  36.  
  37. --[[
  38. Name = <string> - The name of the textbox.
  39. Default = <string> - The default value of the textbox.
  40. TextDisappear = <bool> - Makes the text disappear in the textbox after losing focus.
  41. Callback = <function> - The function of the textbox.
  42. ]]
  43.  
  44. Tab:AddToggle({
  45. Name = "👆Click To Start Dupe Eggs",
  46. Default = false,
  47. Callback = function(Value)
  48. print(Value)
  49. end
  50. })
  51.  
  52. --[[
  53. Name = <string> - The name of the toggle.
  54. Default = <bool> - The default value of the toggle.
  55. Callback = <function> - The function of the toggle.
  56. ]]
  57.  
  58. local Tab = Window:MakeTab({
  59. Name = "Trade Scam",
  60. Icon = "rbxassetid://4483345998",
  61. PremiumOnly = false
  62. })
  63.  
  64. --[[
  65. Name = <string> - The name of the tab.
  66. Icon = <string> - The icon of the tab.
  67. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  68. ]]
  69.  
  70. Tab:AddTextbox({
  71. Name = "Username",
  72. Default = "Player",
  73. TextDisappear = false,
  74. Callback = function(Value)
  75.  
  76. end
  77. })
  78.  
  79. --[[
  80. Name = <string> - The name of the textbox.
  81. Default = <string> - The default value of the textbox.
  82. TextDisappear = <bool> - Makes the text disappear in the textbox after losing focus.
  83. Callback = <function> - The function of the textbox.
  84. ]]
  85.  
  86. Tab:AddToggle({
  87. Name = "🧊Freeze Trade",
  88. Default = false,
  89. Callback = function(Value)
  90. OrionLib:MakeNotification({
  91. Name = "Freeze Trade Enabled!",
  92. Content = "your pet is now safe... remove all your pets now!",
  93. Image = "rbxassetid://4483345998",
  94. Time = 5
  95. })
  96.  
  97. --[[
  98. Title = <string> - The title of the notification.
  99. Content = <string> - The content of the notification.
  100. Image = <string> - The icon of the notification.
  101. Time = <number> - The duration of the notfication.
  102. ]]
  103. end
  104. })
  105.  
  106. --[[
  107. Name = <string> - The name of the toggle.
  108. Default = <bool> - The default value of the toggle.
  109. Callback = <function> - The function of the toggle.
  110. ]]
  111.  
  112. local Tab = Window:MakeTab({
  113. Name = "Dupe Pets",
  114. Icon = "rbxassetid://4483345998",
  115. PremiumOnly = false
  116. })
  117.  
  118. --[[
  119. Name = <string> - The name of the tab.
  120. Icon = <string> - The icon of the tab.
  121. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  122. ]]
  123.  
  124. Tab:AddTextbox({
  125. Name = "Dupe Pets",
  126. Default = "Pet Name",
  127. TextDisappear = true,
  128. Callback = function(Value)
  129. print(Value)
  130. end
  131. })
  132.  
  133. --[[
  134. Name = <string> - The name of the textbox.
  135. Default = <string> - The default value of the textbox.
  136. TextDisappear = <bool> - Makes the text disappear in the textbox after losing focus.
  137. Callback = <function> - The function of the textbox.
  138. ]]
  139.  
  140. Tab:AddToggle({
  141. Name = "👆Click To Start Dupe Pets",
  142. Default = false,
  143. Callback = function(Value)
  144. print(Value)
  145. end
  146. })
  147.  
  148. --[[
  149. Name = <string> - The name of the toggle.
  150. Default = <bool> - The default value of the toggle.
  151. Callback = <function> - The function of the toggle.
  152. ]]
  153.  
  154. local Tab = Window:MakeTab({
  155. Name = "AutoFarm",
  156. Icon = "rbxassetid://4483345998",
  157. PremiumOnly = false
  158. })
  159.  
  160. --[[
  161. Name = <string> - The name of the tab.
  162. Icon = <string> - The icon of the tab.
  163. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  164. ]]
  165.  
  166. Tab:AddButton({
  167. Name = "Get AutoFarm Source",
  168. Callback = function()
  169. print("button pressed")
  170. end
  171. })
  172.  
  173. --[[
  174. Name = <string> - The name of the button.
  175. Callback = <function> - The function of the button.
  176. ]]
  177.  
  178. local Tab = Window:MakeTab({
  179. Name = "Credits | Discord ",
  180. Icon = "rbxassetid://4483345998",
  181. PremiumOnly = false
  182. })
  183.  
  184. --[[
  185. Name = <string> - The name of the tab.
  186. Icon = <string> - The icon of the tab.
  187. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  188. ]]
  189.  
  190. Tab:AddLabel("Discord: discord.gg/yegwm8aQsB")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement