It is possible:
local seconds = 0
local pos = Self.Position()
while true then
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
This is not tested and written on the phone so you might want to check it before you run it
