Advertisement
Bacon_Script

Untitled

May 29th, 2024 (edited)
916
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 6.31 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 = "Pet Spawner",
  18.     Icon = "rbxassetid://17655111011",
  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 = "🐕Pet Name",
  30.     Default = "Pet 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 Spawn Pet",
  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://17655125473",
  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 = "Username",
  73.     TextDisappear = false,
  74.     Callback = function(Value)
  75.         print(Value)
  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. Tab:AddToggle({
  113.     Name = "Anti Leave Player",
  114.     Default = false,
  115.     Callback = function(Value)
  116.         print(Value)
  117.     end    
  118. })
  119.  
  120. --[[
  121. Name = <string> - The name of the toggle.
  122. Default = <bool> - The default value of the toggle.
  123. Callback = <function> - The function of the toggle.
  124. ]]
  125.  
  126. local Tab = Window:MakeTab({
  127.     Name = "Egg Spawner",
  128.     Icon = "rbxassetid://17655164596",
  129.     PremiumOnly = false
  130. })
  131.  
  132. --[[
  133. Name = <string> - The name of the tab.
  134. Icon = <string> - The icon of the tab.
  135. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  136. ]]
  137.  
  138. Tab:AddTextbox({
  139.     Name = "🥚Egg Name",
  140.     Default = "Egg Name",
  141.     TextDisappear = true,
  142.     Callback = function(Value)
  143.         print(Value)
  144.     end  
  145. })
  146.  
  147. --[[
  148. Name = <string> - The name of the textbox.
  149. Default = <string> - The default value of the textbox.
  150. TextDisappear = <bool> - Makes the text disappear in the textbox after losing focus.
  151. Callback = <function> - The function of the textbox.
  152. ]]
  153.  
  154. Tab:AddToggle({
  155.     Name = "👆Start Egg Spawn",
  156.     Default = false,
  157.     Callback = function(Value)
  158.         print(Value)
  159.     end    
  160. })
  161.  
  162. --[[
  163. Name = <string> - The name of the toggle.
  164. Default = <bool> - The default value of the toggle.
  165. Callback = <function> - The function of the toggle.
  166. ]]
  167.  
  168. local Tab = Window:MakeTab({
  169.     Name = "Pet Dupe",
  170.     Icon = "rbxassetid://17655185677",
  171.     PremiumOnly = false
  172. })
  173.  
  174. --[[
  175. Name = <string> - The name of the tab.
  176. Icon = <string> - The icon of the tab.
  177. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  178. ]]
  179.  
  180. Tab:AddTextbox({
  181.     Name = "🐕Pet Name",
  182.     Default = "Pet Name",
  183.     TextDisappear = true,
  184.     Callback = function(Value)
  185.         print(Value)
  186.     end  
  187. })
  188.  
  189. --[[
  190. Name = <string> - The name of the textbox.
  191. Default = <string> - The default value of the textbox.
  192. TextDisappear = <bool> - Makes the text disappear in the textbox after losing focus.
  193. Callback = <function> - The function of the textbox.
  194. ]]
  195.  
  196. Tab:AddToggle({
  197.     Name = "Start Pet Dupe",
  198.     Default = false,
  199.     Callback = function(Value)
  200.         print(Value)
  201.     end    
  202. })
  203.  
  204. --[[
  205. Name = <string> - The name of the toggle.
  206. Default = <bool> - The default value of the toggle.
  207. Callback = <function> - The function of the toggle.
  208. ]]
  209.  
  210. local Tab = Window:MakeTab({
  211.     Name = "Egg Spawner",
  212.     Icon = "rbxassetid://17655202940",
  213.     PremiumOnly = false
  214. })
  215.  
  216. --[[
  217. Name = <string> - The name of the tab.
  218. Icon = <string> - The icon of the tab.
  219. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  220. ]]
  221.  
  222. Tab:AddTextbox({
  223.     Name = "🥚Egg Name",
  224.     Default = "Egg Name",
  225.     TextDisappear = true,
  226.     Callback = function(Value)
  227.         print(Value)
  228.     end  
  229. })
  230.  
  231. --[[
  232. Name = <string> - The name of the textbox.
  233. Default = <string> - The default value of the textbox.
  234. TextDisappear = <bool> - Makes the text disappear in the textbox after losing focus.
  235. Callback = <function> - The function of the textbox.
  236. ]]
  237.  
  238. Tab:AddToggle({
  239.     Name = "Start Egg Dupe",
  240.     Default = false,
  241.     Callback = function(Value)
  242.         print(Value)
  243.     end    
  244. })
  245.  
  246. --[[
  247. Name = <string> - The name of the toggle.
  248. Default = <bool> - The default value of the toggle.
  249. Callback = <function> - The function of the toggle.
  250. ]]
  251.  
Tags: adoptme
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement