Thnx it works now! Now I need another script that triggers a moving object. Is that easy to do? I already made the moving object. Now when you drive on it, (for example) it leaves in 10 seconds. This is the moving object: function omg_lift3() lift3 = createObject(10789, 4186.8369140625, -938.10723876953, 616.61059570313, 0, 0, 69.818115234375) omgMovelift3(1) end function omgMovelift3(point) if point == 1 then moveObject(lift3, 30000, 4186.8369140625, -938.10723876953, 457.21499633789, 0, 0, 0) setTimer(omgMovelift3, 30000+6000, 1, 2) elseif point == 2 then moveObject(lift3, 30000, 4186.8369140625, -938.10723876953, 616.61059570313, 0, 0, 0) setTimer(omgMovelift3, 30000+6000, 1, 1) end end addEventHandler("onResourceStart", getResourceRootElement(getThisResource()), omg_lift3)