If people are stuck in the infinite loading screen glitch, go to dev tools, execute code module, set the script to run to global, enter the script, and hit enter.
endLoadingScreen;
To view the Server Side FPS, type the following script in global chat while logged in as the Admin
#monitor 5
To add a teleport action to an object paste this script into the text box in the Object: Init section of the object that you are using for the teleport. In the script you can change the "Teleport" to whatever name you want, this will be shown when looking at the object. For the second object you are teleporting to you need to set the variable name to whatever you set the "teleport_marker" to. It is best to use an invisible helipad since this will place them in the middle and on top of the object.
To set up a two-way teleporter repeat the process above for a second object/invisible helipad set.
this addAction ["Teleport", { player setPos getMarkerPos "teleport_marker"; }];
Example:
First Teleporter
this addAction ["Turbolift to Bridge", { player setPos getMarkerPos "venator_bridge"; }];
Second Teleporter
this addAction ["Turbolift to Hangars", { player setPos getMarkerPos "venator_hangars"; }];