local Players = game:GetService("Players")
local TeleportService = game:GetService("TeleportService")
for _, player in pairs(Players:GetPlayers()) do
TeleportService:Teleport(7905254789, player)
end
If you’re going to teleport certain players, insert them into a table, and replace Players:GetPlayers() with the table name
Third party teleports isn’t an answer. TeleportService:Teleport() can be used to teleport one player, but you can loop thru a table of players and teleport each individual one.