Question is in the Topic Title
Not asking for code, just asking how I could do this, unless in missing something
Question is in the Topic Title
Not asking for code, just asking how I could do this, unless in missing something
Do you want to teleport a player to the current server or send them to another server?
If it is to send it to another server, the script would be as follows:
local TeleportService = game:GetService("TeleportService")
local gameID = 5623717642 --URL server
function onTouched(hit)
local player = game.Players:GetPlayerFromCharacter(hit.Parent)
if player then
TeleportService:Teleport(gameID, player)
end
end
script.Parent.Touched:connect(onTouched)
Place this server script in a part
Sorry I still made a script lol
turns out all I had to do was Reserve some Servers.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.