Im trying to make a player teleport to a specific players server for example, player with the IGN robloxdude123 wants to join the same server as player IGN flowergirl123.
does anybody know any wiki sites that talks about doing this? trying to learn more about how to do this. thanks
If you wanted to do that but you will still need a GUI and might have to change the scripts a bit
local TeleportService = game:GetService("TeleportService") local level1Id = 408502340 --Place ID local level2Id = 408502380 -- Put Your Friend ID
local level1SpawnName = “SpawnLocation1” function onTouched(hit) -- Down here might have to change to Press Button local player = game.Players:GetPlayerFromCharacter(hit.Parent) if player then TeleportService:TeleportToSpawnByName(level1Id , level1SpawnName, player) end end