Scripting issue - mini game teleport

Currently having an issue with my script, I am new to scripting and used a tutorial to help me make the basics of my mini game. However, the teleport part teleports players to random blocks as opposed to a block on the selected mini game map. I’ve highlighted the bit of code which performs that function and was curious if anyone could help me or give me advice to alter the script so that it teleports players to the actual map. The maps are in replicated storage:

Pretty sure you need to move the map you want to teleport your player to into workspace, then select the spawnlocation of that selected map and teleport all the player’s to that

The script you have now with the workspace structure on the screenshot will teleport the character randomly to either FunObby, or SwordMap blocks in ur workspace, not any other. If it does so, then your script is working perfectly.

If it doesnt, can you show to which block it teleports you?

Use PivotTo() instead of MoveTo()

make a Folder inside the map and name it Teleports



   local players = game.Players:GetChildren()
   for i  = 1, #players do
   if players[i].Character ~= nil then
   local sp = math.random(1, #map.Teleports:GetChildren())
   players[i].Character:MoveTo(map.Teleports:GetChildren()[sp].Position)
   players[i].Character.Parent = workspace.Ingame
   end
end