- getgenv().autoCoins = true
- getgenv().autoCommon = true
- getgenv().autoUncommon = true
- getgenv().autoRare = true
- getgenv().autoEpic = true
- getgenv().autoLegendary = true
- getgenv().autoDamage = true
- getgenv().autoSpeed = true
- getgenv().autoRange = true
- getgenv().autoDrop = true
- getgenv().petEq1 = true
- getgenv().petEq2 = true
- getgenv().petEq3 = true
- getgenv().petEq4 = true
- getgenv().petEq5 = true
- getgenv().petEq6 = true
- --GUI SHIT
- local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/AikaV3rm/UiLib/master/Lib.lua')))()
- local w = library:CreateWindow("Bread Hub")
- local e = library:CreateWindow("Hidden Eggs")
- local f = library:CreateWindow("Teleports")
- local d = w:CreateFolder("Collect Coins")
- local c = w:CreateFolder("Auto Buy Egg")
- local h = w:CreateFolder("Auto Buy Upgrades")
- local e = e:CreateFolder("Hidden Egg Teleports")
- local f = f:CreateFolder("Teleports")
- local a = w:CreateFolder("Credits")
- local b = w:CreateFolder("Destroy Gui")
- --FUNCTIONS
- function aCoins()
- spawn(function()
- while autoCoins do task.wait()
- for _,v in pairs(game:GetService("Workspace"):GetDescendants()) do
- if v:IsA"Model" and v.Parent.Name == "Drops" then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Base.CFrame
- end
- end
- end
- end)
- end
- function aCommon()
- spawn(function()
- while getgenv().autoCommon == true do
- local args = {[1] = 1}
- game:GetService("ReplicatedStorage").Remotes.BuyEgg:FireServer(unpack(args))
- wait()
- end
- end)
- end
- function aUncommon()
- spawn(function()
- while getgenv().autoUncommon == true do
- local args = {[1] = 2}
- game:GetService("ReplicatedStorage").Remotes.BuyEgg:FireServer(unpack(args))
- wait()
- end
- end)
- end
- function aRare()
- spawn(function()
- while getgenv().autoRare == true do
- local args = {[1] = 3}
- game:GetService("ReplicatedStorage").Remotes.BuyEgg:FireServer(unpack(args))
- wait()
- end
- end)
- end
- function aEpic()
- spawn(function()
- while getgenv().autoEpic == true do
- local args = {[1] = 4}
- game:GetService("ReplicatedStorage").Remotes.BuyEgg:FireServer(unpack(args))
- wait()
- end
- end)
- end
- function aLegendary()
- spawn(function()
- while getgenv().autoLegendary == true do
- local args = {[1] = 5}
- game:GetService("ReplicatedStorage").Remotes.BuyEgg:FireServer(unpack(args))
- wait()
- end
- end)
- end
- function aDamage()
- spawn(function()
- while getgenv().autoDamage == true do
- local args = {[1] = "Damage"}
- game:GetService("ReplicatedStorage").Remotes.BuyStatIncrease:FireServer(unpack(args))
- wait()
- end
- end)
- end
- function aSpeed()
- spawn(function()
- while getgenv().autoSpeed == true do
- local args = {[1] = "Speed"}
- game:GetService("ReplicatedStorage").Remotes.BuyStatIncrease:FireServer(unpack(args))
- wait()
- end
- end)
- end
- function aRange()
- spawn(function()
- while getgenv().autoRange == true do
- local args = {[1] = "DropCollectionRange"}
- game:GetService("ReplicatedStorage").Remotes.BuyStatIncrease:FireServer(unpack(args))
- wait()
- end
- end)
- end
- function aDrop()
- spawn(function()
- while getgenv().autoDrop == true do
- local args = {[1] = "DropRate"}
- game:GetService("ReplicatedStorage").Remotes.BuyStatIncrease:FireServer(unpack(args))
- wait()
- end
- end)
- end
- function aEq1()
- spawn(function()
- while getgenv().petEq1 == true do
- local args = {[1] = 1}
- game:GetService("ReplicatedStorage").Remotes.BuyPetEquipSlot:FireServer(unpack(args))
- wait()
- end
- end)
- end
- function aEq2()
- spawn(function()
- while getgenv().petEq2 == true do
- local args = {[1] = 2}
- game:GetService("ReplicatedStorage").Remotes.BuyPetEquipSlot:FireServer(unpack(args))
- wait()
- end
- end)
- end
- function aEq3()
- spawn(function()
- while getgenv().petEq3 == true do
- local args = {[1] = 3}
- game:GetService("ReplicatedStorage").Remotes.BuyPetEquipSlot:FireServer(unpack(args))
- wait()
- end
- end)
- end
- function aEq4()
- spawn(function()
- while getgenv().petEq4 == true do
- local args = {[1] = 4}
- game:GetService("ReplicatedStorage").Remotes.BuyPetEquipSlot:FireServer(unpack(args))
- wait()
- end
- end)
- end
- function aEq5()
- spawn(function()
- while getgenv().petEq5 == true do
- local args = {[1] = 5}
- game:GetService("ReplicatedStorage").Remotes.BuyPetEquipSlot:FireServer(unpack(args))
- wait()
- end
- end)
- end
- function aEq6()
- spawn(function()
- while getgenv().petEq6 == true do
- local args = {[1] = 6}
- game:GetService("ReplicatedStorage").Remotes.BuyPetEquipSlot:FireServer(unpack(args))
- wait()
- end
- end)
- end
- --Toggles
- d:Toggle("Collect Coins", function (bool)
- getgenv().autoCoins = bool
- print('Auto coin is: ', bool);
- if bool then
- aCoins()
- end
- end)
- c:Toggle("Common Egg", function (bool)
- getgenv().autoCommon = bool
- print('Auto egg is: ', bool);
- if bool then
- aCommon()
- end
- end)
- c:Toggle("Uncommon Egg", function (bool)
- getgenv().autoUncommon = bool
- print('Auto egg is: ', bool);
- if bool then
- aUncommon()
- end
- end)
- c:Toggle("Rare Egg", function (bool)
- getgenv().autoRare = bool
- print('Auto egg is: ', bool);
- if bool then
- aRare()
- end
- end)
- c:Toggle("Epic Egg", function (bool)
- getgenv().autoEpic = bool
- print('Auto egg is: ', bool);
- if bool then
- aEpic()
- end
- end)
- c:Toggle("Legendary Egg", function (bool)
- getgenv().autoLegendary = bool
- print('Auto egg is: ', bool);
- if bool then
- aLegendary()
- end
- end)
- h:Toggle("Auto Buy Damage", function (bool)
- getgenv().autoDamage = bool
- print('Auto buy is: ', bool);
- if bool then
- aDamage()
- end
- end)
- h:Toggle("Auto Buy Speed", function (bool)
- getgenv().autoSpeed = bool
- print('Auto buy is: ', bool);
- if bool then
- aSpeed()
- end
- end)
- h:Toggle("Auto Buy Damage", function (bool)
- getgenv().autoDamage = bool
- print('Auto buy is: ', bool);
- if bool then
- aDamage()
- end
- end)
- h:Toggle("Auto Buy Drop Collection Range", function (bool)
- getgenv().autoRange = bool
- print('Auto buy is: ', bool);
- if bool then
- aRange()
- end
- end)
- h:Toggle("Auto Buy Drop Rate", function (bool)
- getgenv().autoDrop = bool
- print('Auto buy is: ', bool);
- if bool then
- aDrop()
- end
- end)
- h:Toggle("(1) Auto Buy Pet equip+1", function (bool)
- getgenv().petEq1 = bool
- print('Auto buy is: ', bool);
- if bool then
- aEq1()
- end
- end)
- h:Toggle("(2) Auto Buy Pet equip+1", function (bool)
- getgenv().petEq2 = bool
- print('Auto buy is: ', bool);
- if bool then
- aEq2()
- end
- end)
- h:Toggle("(3) Auto Buy Pet equip+1", function (bool)
- getgenv().petEq3 = bool
- print('Auto buy is: ', bool);
- if bool then
- aEq3()
- end
- end)
- h:Toggle("(4) Auto Buy Pet equip+1", function (bool)
- getgenv().petEq4 = bool
- print('Auto buy is: ', bool);
- if bool then
- aEq4()
- end
- end)
- h:Toggle("(5) Auto Buy Pet equip+1", function (bool)
- getgenv().petEq5 = bool
- print('Auto buy is: ', bool);
- if bool then
- aEq5()
- end
- end)
- h:Toggle("(6) Auto Buy Pet equip+1", function (bool)
- getgenv().petEq6 = bool
- print('Auto buy is: ', bool);
- if bool then
- aEq6()
- end
- end)
- --Teleports
- f:Label("Might fall through map, just teleport again",{
- TextSize = 15; -- Self Explaining
- TextColor = Color3.fromRGB(255,255,255); -- Self Explaining
- BgColor = Color3.fromRGB(69,69,69); -- Self Explaining
- })
- f:Button("Spawn", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1.50139868, -0.64049077, -102.807823, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- end)
- f:Button("Meadow", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1.50139868, -0.64049077, -267.854919, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- end)
- f:Button("Forest", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(0.421853423, -0.64049077, -433.135559, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- end)
- f:Button("Desert", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(166.312866, -0.64049077, -432.176758, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- end)
- f:Button("Snow", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(185.489822, -0.64049077, -267.568756, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- end)
- f:Button("Beach Area", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(166.317932, -0.64049077, -103.172073, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- end)
- f:Button("Big Rock Area", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(177.824768, -0.64049077, 62.2183762, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- end)
- f:Button("Last Area", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-31.333477, -0.64049077, 86.5113678, 0, 0, 1, 0, 1, -0, -1, 0, 0)
- end)
- --Hidden eggs
- e:Label("Must Have Area Unlocked To Grab Egg",{
- TextSize = 15; -- Self Explaining
- TextColor = Color3.fromRGB(255,255,255); -- Self Explaining
- BgColor = Color3.fromRGB(69,69,69); -- Self Explaining
- })
- e:Button("Hidden Egg 1", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-46.2225151, 8.07455921, -484.939392, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- end)
- e:Button("Hidden Egg 2", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(68.9807587, 17.190691, -228.473541, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- end)
- e:Button("Hidden Egg 3", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(76.2722855, 30.7728672, -236.058197, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- end)
- e:Button("Hidden Egg 4", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-69.4395447, 21.4671841, -191.519394, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- end)
- e:Button("Hidden Egg 5", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(251.12912, 8.41178989, -307.311218, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- end)
- e:Button("Hidden Egg 6", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(214.026428, 7.97948837, -481.357239, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- end)
- e:Button("Hidden Egg 7", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(92.974884, 36.7695007, -325.252899, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- end)
- e:Button("Hidden Egg 8", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(207.55864, 31.8015175, -475.257996, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- end)
- e:Button("Hidden Egg 9", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-59.0060539, 4.1507864, -492.251678, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- end)
- e:Button("Hidden Egg 10", function()
- 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)
- end)
- e:Button("Hidden Egg 11", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(82.3300247, 4.68738794, -101.110176, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- end)
- e:Button("Hidden Egg 12", function()
- 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)
- end)
- e:Button("Hidden Egg 13", function()
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(283.004669, -1.20801365, -151.595001, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- end)
- e:Button("Hidden Egg 14", function()
- 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)
- end)
- e:Button("Hidden Egg 15", function()
- 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)
- end)
- e:Button("Hidden Egg 16", function()
- 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)
- end)
- e:Button("Hidden Egg 17", function()
- 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)
- end)
- e:Button("Hidden Egg 18", function()
- 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)
- end)
- e:Button("Hidden Egg 19", function()
- 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)
- end)
- --MISC
- a:Button("xdeformedbread#6969",function()
- setclipboard("https://discord.gg/mN939CSr5n")
- toclipboard("https://discord.gg/mN939CSr5n")
- end)
- b:DestroyGui()
- print('made by xdeformedbread#6969')
- a:Button("Discord Link",function()
- setclipboard("https://discord.gg/mN939CSr5n")
- toclipboard("https://discord.gg/mN939CSr5n")
- end)