i want to teleport players to a map like murder mystery i really need help.
local point=Vector3.new() for _,v in pairs(game.Players:GetPlayers())do if v.Character then v.Character:MoveTo(point+Vector3.new(math.random(-10,10),0,math.random(-10,10)) end end
Moves everyone's character to point
offset by up to 10 studs in any horizontal direction.