Here is an option using decorations.markings, although they can be improved to adapt to curves, in this case it does not, but you can look for examples with coils, however it is best to declare it as a style or pic so that you can do a lot with little code.
RESULT:

MWE:
\documentclass{standalone}
\usepackage{tikz}
\usetikzlibrary{arrows.meta,decorations.markings,calc}
\definecolor{brown}{HTML}{2E2111}
\begin{document}
\begin{tikzpicture}[
%Environment Styles
MyArrow/.style={
draw,
shorten >=28pt,
line width=2pt,
preaction={
decorate,
shorten >=0pt,
line width=1pt,
rounded corners=0,
decoration={
markings,
mark=at position 1
with {
\clip[](0,0) -- ++(-28pt,-5pt) -- ++(0,10pt) -- cycle;
\fill[#1](0,0) -- ++(-28pt,-5pt) -- ++(0,10pt) -- cycle;
\foreach \k in {1,...,6}{\draw[white, line width=2pt] (-4pt*\k,-5pt) -- ++(0,10pt);}
}
}
}
}
]
\foreach \i in {0,45,...,315} {\draw[MyArrow=orange] (0,0) -- ++(\i:2);}
\foreach \i in {0,45,...,315} {\draw[MyArrow=blue, rounded corners] (4,0) --++(\i:1) -- ++(45+\i:2);}
\draw[MyArrow=red](0,0) [out=-15,in=180] to ++(4,-3)[out=0,in=180] -- ++(2,0);
\foreach \distance in {0,1,...,40}{
\pgfmathparse{0.9*rnd+0.3}
\definecolor{Rcolor}{rgb}{\pgfmathresult,\pgfmathresult,\pgfmathresult} % from https://tex.stackexchange.com/a/37279/154390
\draw[MyArrow=green!50!Rcolor,brown!50!Rcolor] (-1.7,-6)++(\distance*0.22,0) -- ++(0,2+0.7*rand*rand););
}
\end{tikzpicture}
\end{document}
\draw[-{Latex[length=30mm,angle'=10]},line width=0pt,postaction={draw,-,shorten >=30mm-1.2pt,black,very thick},white,pattern={Lines[line width=2.5pt,distance=5pt]},pattern color=orange] (0,-2) -- (1,2.8);. Is there a way to rotate the arrowhead AND stripes? – Medulla Oblongata Nov 23 '23 at 18:15angle=<value>in the appropriate place. However, I'm not sure how you're rotating the arrows (or what you mean by rotating the arrows), so I don't know whether that will work in your case or how to figure out whether it will. – cfr Nov 24 '23 at 02:30bend, it also works fine (though the black line does less well). So presumably you're rotating them in some other way, but you don't say what. – cfr Nov 24 '23 at 02:42