//---Change the following line to the coordinates you need new visitors to land at vector landingpoint = <275, 429, 35>; //---Done you don't need to touch anything else. //---By Aaack Aardvark, Arcadia Shop, 2021. integer ready = FALSE; key user; default { collision_start(integer nya) { user = llDetectedKey(0); if (ready == FALSE) { llSetTimerEvent(5); ready = TRUE; } } timer() { llSetTimerEvent(0); ready = FALSE; osLocalTeleportAgent(user, landingpoint, ZERO_VECTOR, ZERO_VECTOR, OS_LTPAG_FORCENOFLY | OS_LTPAG_USEVEL); } }