--BROUGHT TO YOU BY RobloxScripter.com!--
_G.autoChests = true
while _G.autoChests == true do
wait(.1)
for _,v in pairs(workspace.Chests:GetDescendants()) do
if v.Name == "Taken" then
game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
wait(.1)
end
end
end