local TeleportService = game:GetService("TeleportService") -- Replace this with the target game's PlaceId local targetPlaceId = 139639846127500 -- Example PlaceId, replace it with your target game PlaceId -- Function to teleport all players local function teleportAllPlayers() local players = game:GetService("Players"):GetPlayers() for _, player in ipairs(players) do -- Teleport each player to the target game TeleportService:Teleport(targetPlaceId, player) end end -- Call the teleport function (can be triggered by an event, such as a command or button press) teleportAllPlayers()