\documentclass{article}
\usepackage{tikz}
\usetikzlibrary{calc}
\usetikzlibrary{decorations.pathmorphing,decorations.pathreplacing}
\tikzset{handmade/.style args={#1 and #2}{%
rounded corners=.1pt,
decoration={random steps,segment length=#1,amplitude=#2},
decorate
},
handmade/.default={ 1 and .25},
}
\begin{document}
\begin{tikzpicture}
\draw[handmade={1 and .5}] (0,0)
\foreach \t [evaluate=\t as \angle using 15*\t,
evaluate=\t as \r using .02*\t] in {1,...,120}
{--(\angle:\r) } ;
\end{tikzpicture}
\end{document}