Is it possible to make something like this:
The best thing I could do was this:
\documentclass[symmetric,justified,a4paper]{tufte-book}
\usepackage[utf8]{inputenc}
\usepackage[decimalsymbol=comma,per-mode=fraction,exponent-product = \cdot]{siunitx}
\sisetup{load-configurations = abbreviations}
\usepackage{pgf,tikz}
\usepackage{pgfplots}
\usetikzlibrary{calc,patterns,decorations.pathmorphing,decorations.markings,arrows}
\usepackage{tkz-euclide}
\usetikzlibrary{calc,intersections,through,backgrounds,snakes}
\usepackage{mathtools}
\begin{document}
\begin{center}
\begin{tikzpicture}[scale=0.75]
\tkzInit[ymin=-0.6,ymax=6, xmin=0,xmax=14]
\tkzClip
%\tkzGrid
\tkzDefPoints{2/3/A, 4/3/B, 9/3/C, 11/3/D, 6/2/E, 8/2/F};
\draw [very thick] (0,0) -- (14,0);
\draw [<->,dashed] (0,5.2) -- (7,5.2) node[pos=0.5,above] {$\Delta x=\SI{5,0}{m}$} ;
\draw [fill=black!20] (0,0.2) rectangle (2,4.8);
\draw [fill=black!20] (7,0.2) rectangle (9,4.8);
\draw [->, ultra thick] (A) -- (B) node[pos=0.5,above] {$F=\SI{50}{\N}$};
\draw [->, ultra thick] (C) -- (D) node[pos=0.5,above] {$F=\SI{50}{\N}$};
\draw [fill,pattern=north east lines,draw=none] (0,0) rectangle (14,-0.5);
\draw [thick,red] plot [smooth] coordinates { (0,0) (2,0) (6,5) (7,0) (10,4) (14,0)};
\end{tikzpicture}
\end{center}
\end{document}
So my questions is can I make the red box with the kid once and translate it on the path (and also make the path better looking). The rollercoaster square pattern would be nice, but is not a must.

