@Zingron

Man, I'm trying to make an script that goes to labelName if there are items in lootBP this what I got

Code:
elseif (labelName == "DepositItems") then
   if (Container:ItemCount() > 0) then
      print("Found " .. Container.ItemCount() .. " items to deposit.")
      wait(1500)
      Walker.Goto("Reach Depot")
   else
      Walker.Goto("CheckSupp")
   end