local seconds = 0
local pos = Self.Position()

while true do
if Self.Position().x == pos.x and Self.Position().y == pos.y then
seconds = seconds + 1
if seconds >= 60 then
alert()
end
else
seconds = 0
pos = Self.Position()
end
end

@Elizabeth