local objs = workspace.GameData.Objects local tell = game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("Tell") while wait(1) do if objs.Boxbrgr.Amount.Value < 5 or objs.Boxbac.Amount.Value < 5 then tell:FireServer("Order", "Meat") elseif objs.Boxltc.Amount.Value < 5 or objs.Boxoni.Amount.Value < 5 or objs.Boxpcl.Amount.Value < 5 or objs.Boxtom.Amount.Value < 5 or objs.Boxchz.Amount.Value < 5 then tell:FireServer("Order", "Veggies") elseif objs.Boxbbun.Amount.Value < 5 or objs.Boxtbun.Amount.Value < 5 then tell:FireServer("Order", "Bread") elseif objs.Boxfri.Amount.Value < 5 then tell:FireServer("Order", "Fries") elseif objs.Boxreal.Amount.Value < 5 or objs.BoxFriCon.Amount.Value < 5 then tell:FireServer("Order", "Cups") elseif objs.BoxBag.Amount.Value < 5 or objs.Boxtray.Amount.Value < 5 then tell:FireServer("Order", "Trays") end end