I don't have a script right now, but I was just wondering if there was some sort of script that would allow you to place someone into the same exact server as someone else, preferably if they touch a brick at the same semi-exact/exact time. I need this for a game that'll have sort of like an elevator that'll bring a group of players down, they will touch a brick, and they'll be placed to another part of the game, which is a dungeon that they would complete together. Anything helps, thank in advance!
You can use "TeleportToPlaceInstance", which is a method of TeleportService. You can find the documentation of it here: http://wiki.roblox.com/index.php?title=API:Class/TeleportService/TeleportToPlaceInstance
You'll need the server's JobId (instance Id) and place Id. A final result should look something like this:
LocalScript
local Teleport = game:GetService("TeleportService") Teleport:TeleportToPlaceInstance(game.PlaceId, "jobId")
My advice is to avoid having to switch servers. Keep it all in the same server. You'll need to find a way to make the entire game playable on one server, which is usually feasible.