Bakery Simulator Script | SEMI AUTOFARM

Created by grandpapapa

Features:

THIS WILL MAKE ALL THE OVENS COOK TO EXOTIC GRADE w/o HAVING THE LEVEL, BUT YOU JUST NEED TO ADD INGREDIENTS
IF SOMEONE CAN MAKE A AUTOFARM THAT WOULD BE NICE

for i,v in pairs(game:GetService("Workspace").Plots.Plot1.Ovens:GetDescendants()) do -- --REPLACE Plot1 WITH YOUR PLOT
 if v.Name == "Feast" then -- Replace to your oven name
   local thing2 = "Exotic" -- Keep
   local thing = v 
   local Event = game:GetService("ReplicatedStorage").Remotes.StartBake
   Event:FireServer(thing, thing2)
 end
end