The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
BreadHub script pastebin roblox
By BreadHub on 2024-09-21 08:00 am | Syntax: LUA | Views: 8



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. getgenv().autoCoins = true
  2. getgenv().autoCommon = true
  3. getgenv().autoUncommon = true
  4. getgenv().autoRare = true
  5. getgenv().autoEpic = true
  6. getgenv().autoLegendary = true
  7. getgenv().autoDamage = true
  8. getgenv().autoSpeed = true
  9. getgenv().autoRange = true
  10. getgenv().autoDrop = true
  11. getgenv().petEq1 = true
  12. getgenv().petEq2 = true
  13. getgenv().petEq3 = true
  14. getgenv().petEq4 = true
  15. getgenv().petEq5 = true
  16. getgenv().petEq6 = true
  17.  
  18. --GUI SHIT
  19. local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/AikaV3rm/UiLib/master/Lib.lua')))()
  20. local w = library:CreateWindow("Bread Hub")
  21.  
  22. local e = library:CreateWindow("Hidden Eggs")
  23.  
  24. local f = library:CreateWindow("Teleports")
  25.  
  26. local d = w:CreateFolder("Collect Coins")
  27.  
  28. local c = w:CreateFolder("Auto Buy Egg")
  29.  
  30. local h = w:CreateFolder("Auto Buy Upgrades")
  31.  
  32. local e = e:CreateFolder("Hidden Egg Teleports")
  33.  
  34. local f = f:CreateFolder("Teleports")
  35.  
  36. local a = w:CreateFolder("Credits")
  37.  
  38. local b = w:CreateFolder("Destroy Gui")
  39.  
  40. --FUNCTIONS
  41. function aCoins()
  42.     spawn(function()
  43.          while autoCoins do task.wait()
  44.             for _,v in pairs(game:GetService("Workspace"):GetDescendants()) do
  45.                 if v:IsA"Model" and v.Parent.Name == "Drops" then
  46.                     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Base.CFrame
  47.                 end
  48.             end
  49.         end
  50.     end)
  51. end
  52. function aCommon()
  53.     spawn(function()
  54.         while getgenv().autoCommon == true do
  55.             local args = {[1] = 1}
  56.             game:GetService("ReplicatedStorage").Remotes.BuyEgg:FireServer(unpack(args))
  57.             wait()
  58.         end
  59.     end)
  60. end
  61. function aUncommon()
  62.     spawn(function()
  63.         while getgenv().autoUncommon == true do
  64.                 local args = {[1] = 2}
  65.                 game:GetService("ReplicatedStorage").Remotes.BuyEgg:FireServer(unpack(args))
  66.             wait()
  67.         end
  68.     end)
  69. end
  70. function aRare()
  71.     spawn(function()
  72.         while getgenv().autoRare == true do
  73.                 local args = {[1] = 3}
  74.                 game:GetService("ReplicatedStorage").Remotes.BuyEgg:FireServer(unpack(args))
  75.             wait()
  76.         end
  77.     end)
  78. end
  79. function aEpic()
  80.     spawn(function()
  81.         while getgenv().autoEpic == true do
  82.                 local args = {[1] = 4}
  83.                 game:GetService("ReplicatedStorage").Remotes.BuyEgg:FireServer(unpack(args))
  84.             wait()
  85.         end
  86.     end)
  87. end
  88. function aLegendary()
  89.     spawn(function()
  90.         while getgenv().autoLegendary == true do
  91.                 local args = {[1] = 5}
  92.                 game:GetService("ReplicatedStorage").Remotes.BuyEgg:FireServer(unpack(args))
  93.             wait()
  94.         end
  95.     end)
  96. end
  97. function aDamage()
  98.     spawn(function()
  99.         while getgenv().autoDamage == true do
  100.             local args = {[1] = "Damage"}
  101.             game:GetService("ReplicatedStorage").Remotes.BuyStatIncrease:FireServer(unpack(args))
  102.             wait()
  103.         end
  104.     end)
  105. end
  106. function aSpeed()
  107.     spawn(function()
  108.         while getgenv().autoSpeed == true do
  109.             local args = {[1] = "Speed"}
  110.             game:GetService("ReplicatedStorage").Remotes.BuyStatIncrease:FireServer(unpack(args))
  111.             wait()
  112.         end
  113.     end)
  114. end
  115. function aRange()
  116.     spawn(function()
  117.         while getgenv().autoRange == true do
  118.             local args = {[1] = "DropCollectionRange"}
  119.             game:GetService("ReplicatedStorage").Remotes.BuyStatIncrease:FireServer(unpack(args))
  120.             wait()
  121.         end
  122.     end)
  123. end
  124. function aDrop()
  125.     spawn(function()
  126.         while getgenv().autoDrop == true do
  127.             local args = {[1] = "DropRate"}
  128.             game:GetService("ReplicatedStorage").Remotes.BuyStatIncrease:FireServer(unpack(args))
  129.             wait()
  130.         end
  131.     end)
  132. end
  133.  
  134. function aEq1()
  135.     spawn(function()
  136.         while getgenv().petEq1 == true do
  137.             local args = {[1] = 1}
  138.             game:GetService("ReplicatedStorage").Remotes.BuyPetEquipSlot:FireServer(unpack(args))
  139.             wait()
  140.         end
  141.     end)
  142. end
  143. function aEq2()
  144.     spawn(function()
  145.         while getgenv().petEq2 == true do
  146.             local args = {[1] = 2}
  147.             game:GetService("ReplicatedStorage").Remotes.BuyPetEquipSlot:FireServer(unpack(args))
  148.             wait()
  149.         end
  150.     end)
  151. end
  152. function aEq3()
  153.     spawn(function()
  154.         while getgenv().petEq3 == true do
  155.             local args = {[1] = 3}
  156.             game:GetService("ReplicatedStorage").Remotes.BuyPetEquipSlot:FireServer(unpack(args))
  157.             wait()
  158.         end
  159.     end)
  160. end
  161. function aEq4()
  162.     spawn(function()
  163.         while getgenv().petEq4 == true do
  164.             local args = {[1] = 4}
  165.             game:GetService("ReplicatedStorage").Remotes.BuyPetEquipSlot:FireServer(unpack(args))
  166.             wait()
  167.         end
  168.     end)
  169. end
  170. function aEq5()
  171.     spawn(function()
  172.         while getgenv().petEq5 == true do
  173.             local args = {[1] = 5}
  174.             game:GetService("ReplicatedStorage").Remotes.BuyPetEquipSlot:FireServer(unpack(args))
  175.             wait()
  176.         end
  177.     end)
  178. end
  179. function aEq6()
  180.     spawn(function()
  181.         while getgenv().petEq6 == true do
  182.             local args = {[1] = 6}
  183.             game:GetService("ReplicatedStorage").Remotes.BuyPetEquipSlot:FireServer(unpack(args))
  184.             wait()
  185.         end
  186.     end)
  187. end
  188.  
  189.  
  190. --Toggles
  191. d:Toggle("Collect Coins", function (bool)
  192.         getgenv().autoCoins = bool
  193.         print('Auto coin is: ', bool);
  194.         if bool then
  195.         aCoins()
  196.     end
  197. end)
  198. c:Toggle("Common Egg", function (bool)
  199.         getgenv().autoCommon = bool
  200.         print('Auto egg is: ', bool);
  201.         if bool then
  202.         aCommon()
  203.     end
  204. end)
  205. c:Toggle("Uncommon Egg", function (bool)
  206.         getgenv().autoUncommon = bool
  207.         print('Auto egg is: ', bool);
  208.         if bool then
  209.         aUncommon()
  210.     end
  211. end)
  212. c:Toggle("Rare Egg", function (bool)
  213.         getgenv().autoRare = bool
  214.         print('Auto egg is: ', bool);
  215.         if bool then
  216.         aRare()
  217.     end
  218. end)
  219. c:Toggle("Epic Egg", function (bool)
  220.         getgenv().autoEpic = bool
  221.         print('Auto egg is: ', bool);
  222.         if bool then
  223.         aEpic()
  224.     end
  225. end)
  226. c:Toggle("Legendary Egg", function (bool)
  227.         getgenv().autoLegendary = bool
  228.         print('Auto egg is: ', bool);
  229.         if bool then
  230.         aLegendary()
  231.     end
  232. end)
  233. h:Toggle("Auto Buy Damage", function (bool)
  234.         getgenv().autoDamage = bool
  235.         print('Auto buy is: ', bool);
  236.         if bool then
  237.         aDamage()
  238.     end
  239. end)
  240. h:Toggle("Auto Buy Speed", function (bool)
  241.         getgenv().autoSpeed = bool
  242.         print('Auto buy is: ', bool);
  243.         if bool then
  244.         aSpeed()
  245.     end
  246. end)
  247. h:Toggle("Auto Buy Damage", function (bool)
  248.         getgenv().autoDamage = bool
  249.         print('Auto buy is: ', bool);
  250.         if bool then
  251.         aDamage()
  252.     end
  253. end)
  254. h:Toggle("Auto Buy Drop Collection Range", function (bool)
  255.         getgenv().autoRange = bool
  256.         print('Auto buy is: ', bool);
  257.         if bool then
  258.         aRange()
  259.     end
  260. end)
  261.  
  262. h:Toggle("Auto Buy Drop Rate", function (bool)
  263.         getgenv().autoDrop = bool
  264.         print('Auto buy is: ', bool);
  265.         if bool then
  266.         aDrop()
  267.     end
  268. end)
  269. h:Toggle("(1) Auto Buy Pet equip+1", function (bool)
  270.         getgenv().petEq1 = bool
  271.         print('Auto buy is: ', bool);
  272.         if bool then
  273.         aEq1()
  274.     end
  275. end)
  276. h:Toggle("(2) Auto Buy Pet equip+1", function (bool)
  277.         getgenv().petEq2 = bool
  278.         print('Auto buy is: ', bool);
  279.         if bool then
  280.         aEq2()
  281.     end
  282. end)
  283. h:Toggle("(3) Auto Buy Pet equip+1", function (bool)
  284.         getgenv().petEq3 = bool
  285.         print('Auto buy is: ', bool);
  286.         if bool then
  287.         aEq3()
  288.     end
  289. end)
  290. h:Toggle("(4) Auto Buy Pet equip+1", function (bool)
  291.         getgenv().petEq4 = bool
  292.         print('Auto buy is: ', bool);
  293.         if bool then
  294.         aEq4()
  295.     end
  296. end)
  297. h:Toggle("(5) Auto Buy Pet equip+1", function (bool)
  298.         getgenv().petEq5 = bool
  299.         print('Auto buy is: ', bool);
  300.         if bool then
  301.         aEq5()
  302.     end
  303. end)
  304. h:Toggle("(6) Auto Buy Pet equip+1", function (bool)
  305.         getgenv().petEq6 = bool
  306.         print('Auto buy is: ', bool);
  307.         if bool then
  308.         aEq6()
  309.     end
  310. end)
  311.  
  312.  
  313. --Teleports
  314. f:Label("Might fall through map, just teleport again",{
  315.     TextSize = 15; -- Self Explaining
  316.     TextColor = Color3.fromRGB(255,255,255); -- Self Explaining
  317.     BgColor = Color3.fromRGB(69,69,69); -- Self Explaining
  318.    
  319. })
  320. f:Button("Spawn", function()
  321.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1.50139868, -0.64049077, -102.807823, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  322. end)
  323. f:Button("Meadow", function()
  324.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1.50139868, -0.64049077, -267.854919, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  325. end)
  326. f:Button("Forest", function()
  327.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0.421853423, -0.64049077, -433.135559, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  328. end)
  329. f:Button("Desert", function()
  330.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(166.312866, -0.64049077, -432.176758, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  331. end)
  332. f:Button("Snow", function()
  333.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(185.489822, -0.64049077, -267.568756, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  334. end)
  335. f:Button("Beach Area", function()
  336.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(166.317932, -0.64049077, -103.172073, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  337. end)
  338. f:Button("Big Rock Area", function()
  339.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(177.824768, -0.64049077, 62.2183762, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  340. end)
  341. f:Button("Last Area", function()
  342.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-31.333477, -0.64049077, 86.5113678, 0, 0, 1, 0, 1, -0, -1, 0, 0)
  343. end)
  344. --Hidden eggs
  345. e:Label("Must Have Area Unlocked To Grab Egg",{
  346.     TextSize = 15; -- Self Explaining
  347.     TextColor = Color3.fromRGB(255,255,255); -- Self Explaining
  348.     BgColor = Color3.fromRGB(69,69,69); -- Self Explaining
  349.    
  350. })
  351. e:Button("Hidden Egg 1", function()
  352.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-46.2225151, 8.07455921, -484.939392, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  353. end)
  354. e:Button("Hidden Egg 2", function()
  355.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(68.9807587, 17.190691, -228.473541, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  356. end)
  357. e:Button("Hidden Egg 3", function()
  358.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(76.2722855, 30.7728672, -236.058197, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  359. end)
  360. e:Button("Hidden Egg 4", function()
  361.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-69.4395447, 21.4671841, -191.519394, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  362. end)
  363. e:Button("Hidden Egg 5", function()
  364.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(251.12912, 8.41178989, -307.311218, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  365. end)
  366. e:Button("Hidden Egg 6", function()
  367.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(214.026428, 7.97948837, -481.357239, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  368. end)
  369. e:Button("Hidden Egg 7", function()
  370.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(92.974884, 36.7695007, -325.252899, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  371. end)
  372. e:Button("Hidden Egg 8", function()
  373.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(207.55864, 31.8015175, -475.257996, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  374. end)
  375. e:Button("Hidden Egg 9", function()
  376.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-59.0060539, 4.1507864, -492.251678, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  377. end)
  378. e:Button("Hidden Egg 10", function()
  379.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(110.912849, 6.91059971, -51.9557762, 0.535309255, -0, -0.844656229, 0, 1, -0, 0.844656229, 0, 0.535309255)
  380. end)
  381. e:Button("Hidden Egg 11", function()
  382.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(82.3300247, 4.68738794, -101.110176, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  383. end)
  384. e:Button("Hidden Egg 12", function()
  385.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-61.0322762, 5.23528528, -20.0109425, 0.999379814, -0, -0.0352139287, 0, 1, -0, 0.0352139287, 0, 0.999379814)
  386. end)
  387. e:Button("Hidden Egg 13", function()
  388.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(283.004669, -1.20801365, -151.595001, 1, 0, 0, 0, 1, 0, 0, 0, 1)
  389. end)
  390. e:Button("Hidden Egg 14", function()
  391.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(204.793747, 6.25313377, 130.614792, 0.975430131, 0, 0.220309094, 0, 1, 0, -0.220309094, 0, 0.975430131)
  392. end)
  393. e:Button("Hidden Egg 15", function()
  394.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(79.9539948, 59.8366127, -273.793762, 0.00463348627, -0, -0.999989212, 0, 1, -0, 0.999989212, 0, 0.00463348627)
  395. end)
  396. e:Button("Hidden Egg 16", function()
  397.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(140.395706, 50.424202, 138.90773, 0.999783576, -0, -0.020802483, 0, 1, -0, 0.020802483, 0, 0.999783576)
  398. end)
  399. e:Button("Hidden Egg 17", function()
  400.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(14.1126566, 65.4872208, -48.3473892, 0.999891043, -0, -0.0147606619, 0, 1, -0, 0.0147606619, 0, 0.999891043)
  401. end)
  402. e:Button("Hidden Egg 18", function()
  403.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(8.03232765, 52.0443077, 100.8964, 0.376437128, -0, -0.926442206, 0, 1, -0, 0.926442206, 0, 0.376437128)
  404. end)
  405. e:Button("Hidden Egg 19", function()
  406.     game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(45.0726166, 24.9971657, -146.293259, 0.775471091, -0, -0.631383121, 0, 1, -0, 0.631383121, 0, 0.775471091)
  407. end)
  408.  
  409.  
  410.  
  411.  
  412. --MISC
  413. a:Button("xdeformedbread#6969",function()
  414.     setclipboard("https://discord.gg/mN939CSr5n")
  415.     toclipboard("https://discord.gg/mN939CSr5n")
  416. end)  
  417.  
  418. b:DestroyGui()
  419.  
  420. print('made by xdeformedbread#6969')
  421.  
  422. a:Button("Discord Link",function()
  423.     setclipboard("https://discord.gg/mN939CSr5n")
  424.     toclipboard("https://discord.gg/mN939CSr5n")
  425. end)