Advertisement
Bacon_Script

Untitled

May 30th, 2024 (edited)
579
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.27 KB | None | 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 [3.5]❗", 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:AddButton({
  29. Name = "Equipped Eggs To Dupe",
  30. Callback = function()
  31. OrionLib:MakeNotification({
  32. Name = "Egg Selector",
  33. Content = "Egg Selected!!!!",
  34. Image = "rbxassetid://4483345998",
  35. Time = 5
  36. })
  37.  
  38. --[[
  39. Title = <string> - The title of the notification.
  40. Content = <string> - The content of the notification.
  41. Image = <string> - The icon of the notification.
  42. Time = <number> - The duration of the notfication.
  43. ]]
  44. end
  45. })
  46.  
  47. Tab:AddButton({
  48. Name = "Cick To Dupe Eggs",
  49. Callback = function()
  50. game.Players.LocalPlayer:Kick("Egg Stored In Adopt Me Database!.")
  51. end
  52. })
  53.  
  54. Tab:AddParagraph("ACTIVATED❗","Script Activated Timer 0:00")
  55.  
  56. local Tab = Window:MakeTab({
  57. Name = "Trade Scam",
  58. Icon = "rbxassetid://4483345998",
  59. PremiumOnly = false
  60. })
  61.  
  62. --[[
  63. Name = <string> - The name of the tab.
  64. Icon = <string> - The icon of the tab.
  65. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  66. ]]
  67.  
  68. Tab:AddTextbox({
  69. Name = "Username",
  70. Default = "Player",
  71. TextDisappear = false,
  72. Callback = function(Value)
  73.  
  74. end
  75. })
  76.  
  77. --[[
  78. Name = <string> - The name of the textbox.
  79. Default = <string> - The default value of the textbox.
  80. TextDisappear = <bool> - Makes the text disappear in the textbox after losing focus.
  81. Callback = <function> - The function of the textbox.
  82. ]]
  83.  
  84. Tab:AddToggle({
  85. Name = "🧊Freeze Trade",
  86. Default = false,
  87. Callback = function(Value)
  88. OrionLib:MakeNotification({
  89. Name = "Freeze Trade Enabled!",
  90. Content = "your pet is now safe... remove all your pets now!",
  91. Image = "rbxassetid://4483345998",
  92. Time = 5
  93. })
  94.  
  95. --[[
  96. Title = <string> - The title of the notification.
  97. Content = <string> - The content of the notification.
  98. Image = <string> - The icon of the notification.
  99. Time = <number> - The duration of the notfication.
  100. ]]
  101. end
  102. })
  103.  
  104. --[[
  105. Name = <string> - The name of the toggle.
  106. Default = <bool> - The default value of the toggle.
  107. Callback = <function> - The function of the toggle.
  108. ]]
  109.  
  110. Tab:AddParagraph("ACTIVATED❗","Script Activated Timer 0:00")
  111.  
  112. local Tab = Window:MakeTab({
  113. Name = "AutoFarm",
  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:AddButton({
  125. Name = "Get AutoFarm Source",
  126. Callback = function()
  127. loadstring(game:HttpGet("https://raw.githubusercontent.com/JulHubz/JulHub/main/JulHub"))()
  128. end
  129. })
  130.  
  131. --[[
  132. Name = <string> - The name of the button.
  133. Callback = <function> - The function of the button.
  134. ]]
  135.  
  136. Tab:AddParagraph("ACTIVATED❗","Script Activated Timer 0:00")
  137.  
  138. local Tab = Window:MakeTab({
  139. Name = "Dupe Pets",
  140. Icon = "rbxassetid://4483345998",
  141. PremiumOnly = false
  142. })
  143.  
  144. --[[
  145. Name = <string> - The name of the tab.
  146. Icon = <string> - The icon of the tab.
  147. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  148. ]]
  149.  
  150. Tab:AddButton({
  151. Name = "Equipped Pets To Dupe",
  152. Callback = function()
  153. OrionLib:MakeNotification({
  154. Name = "Pet Selector",
  155. Content = "Pet Selected!!!!",
  156. Image = "rbxassetid://4483345998",
  157. Time = 5
  158. })
  159.  
  160. --[[
  161. Title = <string> - The title of the notification.
  162. Content = <string> - The content of the notification.
  163. Image = <string> - The icon of the notification.
  164. Time = <number> - The duration of the notfication.
  165. ]]
  166. end
  167. })
  168.  
  169. Tab:AddButton({
  170. Name = "Cick To Dupe Pets",
  171. Callback = function()
  172. game.Players.LocalPlayer:Kick("Pet Stored In Adopt Me Database!.")
  173. end
  174. })
  175.  
  176. Tab:AddParagraph("ACTIVATED❗","Script Activated Timer 0:00")
  177.  
  178. --[[
  179. Name = <string> - The name of the button.
  180. Callback = <function> - The function of the button.
  181. ]]
  182.  
  183. --[[
  184. Name = <string> - The name of the button.
  185. Callback = <function> - The function of the button.
  186. ]]
  187.  
  188. local Tab = Window:MakeTab({
  189. Name = "Inf Bucks [New]✨",
  190. Icon = "rbxassetid://4483345998",
  191. PremiumOnly = false
  192. })
  193.  
  194. --[[
  195. Name = <string> - The name of the tab.
  196. Icon = <string> - The icon of the tab.
  197. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  198. ]]
  199.  
  200. Tab:AddButton({
  201. Name = "Get Inf Bucks",
  202. Callback = function()
  203. require(game:service'ReplicatedStorage'.Fsys).load("ClientData").update("money",(15999999984/16))
  204. end
  205. })
  206.  
  207. Tab:AddParagraph("ACTIVATED❗","Script Activated Timer 0:00")
  208.  
  209. --[[
  210. Name = <string> - The name of the button.
  211. Callback = <function> - The function of the button.
  212. ]]
  213.  
  214. local Tab = Window:MakeTab({
  215. Name = "Make All Pets FR",
  216. Icon = "rbxassetid://4483345998",
  217. PremiumOnly = false
  218. })
  219.  
  220. --[[
  221. Name = <string> - The name of the tab.
  222. Icon = <string> - The icon of the tab.
  223. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  224. ]]
  225.  
  226. Tab:AddButton({
  227. Name = "Make All Pets Flyable And Rideable [FE✨]",
  228. Callback = function()
  229. while true do
  230. wait()
  231. local clientData = require(game.ReplicatedStorage.ClientModules.Core.ClientData)
  232. local playerData = clientData.get_data()[tostring(game.Players.LocalPlayer)]
  233. for i,v in pairs(playerData.inventory.pets) do
  234. v.properties.rideable = true
  235. v.properties.flyable = true
  236. end
  237. end
  238. end
  239. })
  240.  
  241. --[[
  242. Name = <string> - The name of the button.
  243. Callback = <function> - The function of the button.
  244. ]]
  245.  
  246. Tab:AddParagraph("ACTIVATED❗","Script Activated Timer 0:00")
  247.  
  248. local Tab = Window:MakeTab({
  249. Name = "Pet Spawner ",
  250. Icon = "rbxassetid://4483345998",
  251. PremiumOnly = false
  252. })
  253.  
  254. --[[
  255. Name = <string> - The name of the tab.
  256. Icon = <string> - The icon of the tab.
  257. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  258. ]]
  259.  
  260. Tab:AddTextbox({
  261. Name = "Spawn Pet",
  262. Default = "Name",
  263. TextDisappear = false,
  264. Callback = function(Value)
  265. print(Value)
  266. end
  267. })
  268.  
  269. --[[
  270. Name = <string> - The name of the textbox.
  271. Default = <string> - The default value of the textbox.
  272. TextDisappear = <bool> - Makes the text disappear in the textbox after losing focus.
  273. Callback = <function> - The function of the textbox.
  274. ]]
  275.  
  276. Tab:AddToggle({
  277. Name = "Can Mega",
  278. Default = false,
  279. Callback = function(Value)
  280. print(Value)
  281. end
  282. })
  283.  
  284. --[[
  285. Name = <string> - The name of the toggle.
  286. Default = <bool> - The default value of the toggle.
  287. Callback = <function> - The function of the toggle.
  288. ]]
  289.  
  290. Tab:AddToggle({
  291. Name = "Can Neon",
  292. Default = false,
  293. Callback = function(Value)
  294. print(Value)
  295. end
  296. })
  297.  
  298. --[[
  299. Name = <string> - The name of the toggle.
  300. Default = <bool> - The default value of the toggle.
  301. Callback = <function> - The function of the toggle.
  302. ]]
  303.  
  304. Tab:AddToggle({
  305. Name = "Can Fly",
  306. Default = false,
  307. Callback = function(Value)
  308. print(Value)
  309. end
  310. })
  311.  
  312. --[[
  313. Name = <string> - The name of the toggle.
  314. Default = <bool> - The default value of the toggle.
  315. Callback = <function> - The function of the toggle.
  316. ]]
  317.  
  318. Tab:AddToggle({
  319. Name = "Can Ride",
  320. Default = false,
  321. Callback = function(Value)
  322. print(Value)
  323. end
  324. })
  325.  
  326. --[[
  327. Name = <string> - The name of the toggle.
  328. Default = <bool> - The default value of the toggle.
  329. Callback = <function> - The function of the toggle.
  330. ]]
  331.  
  332. Tab:AddButton({
  333. Name = "Pet Spawner",
  334. Callback = function()
  335. game.Players.LocalPlayer:Kick("Successful Spawned Pet!")
  336. end
  337. })
  338.  
  339. --[[
  340. Name = <string> - The name of the button.
  341. Callback = <function> - The function of the button.
  342. ]]
  343.  
  344. Tab:AddTextbox({
  345. Name = "Egg Spawner",
  346. Default = "Name",
  347. TextDisappear = false,
  348. Callback = function(Value)
  349. print(Value)
  350. end
  351. })
  352.  
  353. --[[
  354. Name = <string> - The name of the textbox.
  355. Default = <string> - The default value of the textbox.
  356. TextDisappear = <bool> - Makes the text disappear in the textbox after losing focus.
  357. Callback = <function> - The function of the textbox.
  358. ]]
  359.  
  360. Tab:AddButton({
  361. Name = "Egg Spawn",
  362. Callback = function()
  363. game.Players.LocalPlayer:Kick("Successful Spawned Egg!")
  364. end
  365. })
  366.  
  367. --[[
  368. Name = <string> - The name of the button.
  369. Callback = <function> - The function of the button.
  370. ]]
  371.  
  372. Tab:AddParagraph("ACTIVATED❗","Script Activated Timer 0:00")
  373.  
  374. local Tab = Window:MakeTab({
  375. Name = "Trade Bypass",
  376. Icon = "rbxassetid://4483345998",
  377. PremiumOnly = false
  378. })
  379.  
  380. --[[
  381. Name = <string> - The name of the tab.
  382. Icon = <string> - The icon of the tab.
  383. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  384. ]]
  385.  
  386. Tab:AddTextbox({
  387. Name = "Username",
  388. Default = "Player",
  389. TextDisappear = false,
  390. Callback = function(Value)
  391. print(Value)
  392. end
  393. })
  394.  
  395. --[[
  396. Name = <string> - The name of the textbox.
  397. Default = <string> - The default value of the textbox.
  398. TextDisappear = <bool> - Makes the text disappear in the textbox after losing focus.
  399. Callback = <function> - The function of the textbox.
  400. ]]
  401.  
  402. Tab:AddButton({
  403. Name = "Trade Player (Main To Alt)",
  404. Callback = function()
  405. OrionLib:MakeNotification({
  406. Name = "",
  407. Content = "Bypassed! Successful Trade!",
  408. Image = "rbxassetid://4483345998",
  409. Time = 5
  410. })
  411.  
  412. --[[
  413. Title = <string> - The title of the notification.
  414. Content = <string> - The content of the notification.
  415. Image = <string> - The icon of the notification.
  416. Time = <number> - The duration of the notfication.
  417. ]]
  418. end
  419. })
  420.  
  421. --[[
  422. Name = <string> - The name of the button.
  423. Callback = <function> - The function of the button.
  424. ]]
  425.  
  426. Tab:AddLabel("Your Main Alt will use this script")
  427. Tab:AddLabel("Doesnt Work? Dms at discord itsbacon27")
  428. Tab:AddParagraph("ACTIVATED❗","Script Activated Timer 5:00")
  429.  
  430. local Tab = Window:MakeTab({
  431. Name = "Troll",
  432. Icon = "rbxassetid://4483345998",
  433. PremiumOnly = false
  434. })
  435.  
  436. --[[
  437. Name = <string> - The name of the tab.
  438. Icon = <string> - The icon of the tab.
  439. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  440. ]]
  441.  
  442. Tab:AddButton({
  443. Name = "Fling One by one",
  444. Callback = function()
  445. loadstring(game:HttpGet("https://raw.githubusercontent.com/0Ben1/fe./main/Fling%20GUI"))()
  446. end
  447. })
  448.  
  449. --[[
  450. Name = <string> - The name of the button.
  451. Callback = <function> - The function of the button.
  452. ]]
  453.  
  454. Tab:AddButton({
  455. Name = "Fling All",
  456. Callback = function()
  457. loadstring(game:HttpGet('https://raw.githubusercontent.com/FilteringEnabled/NamelessAdmin/main/Source'))()
  458. end
  459. })
  460.  
  461. --[[
  462. Name = <string> - The name of the button.
  463. Callback = <function> - The function of the button.
  464. ]]
  465.  
  466. Tab:AddLabel("More Troll Soon!")
  467. Tab:AddParagraph("ACTIVATED❗","Script Activated Timer 0:00")
  468.  
  469.  
  470. local Tab = Window:MakeTab({
  471. Name = "Credits | Discord ",
  472. Icon = "rbxassetid://4483345998",
  473. PremiumOnly = false
  474. })
  475.  
  476. --[[
  477. Name = <string> - The name of the tab.
  478. Icon = <string> - The icon of the tab.
  479. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  480. ]]
  481.  
  482. Tab:AddParagraph("CREDITS❗","Made By Bacon_Script")
  483. Tab:AddParagraph("ACTIVATED❗","Script Activated Timer 0:00")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement