for _, player in pairs(game.Players:GetPlayers()) do local char = player.Character if char then local pos = char:GetPivot() * CFrame.new(Vector3.new( math.random(-100,100), 0, math.random(-100,100) )) char:PivotTo(pos) end end