local Point1 = Vector3.new(0,0,0) --Where you want to send 1
local Point2 = Vector3.new(0,0,0) --Where you want to send the other
...
function Move(TeamColor)
local plyrs = {}
for i,v in ipairs(game.Players:GetChildren())do
if(v.TeamColor == TeamColor)then
if(pcall(function() assert(v.Character.Torso) end))then
table.insert(plyrs,v)
end
end
end
local rand1 = math.random(#plyrs)
local choice1 = plyrs[rand1]
table.remove(plyrs,rand1)
local choice2 = plyrs[math.random(#plyrs)]
choice1.Character.Torso.CFrame = CFrame.new(Point1)
choice2.Character.Torso.CFrame = CFrame.new(Point2)
end
(BTW, we're trying to restart our forums here KingJavon
http://robloxcentral.forummotion.com/forum.htm)