Another way similar to Dylans; But for producing such a glowing script in any color, inline or even multiparagraph long with automatic linebreak, though sometimes \par is accepted and sometimes you seem to need \\ to prevent errors.

\documentclass[12pt]{article}
\usepackage{tikz}
\usetikzlibrary{external}\tikzexternalize%Important to keep compiling time down, since 1 single line has a few hundred overlays of different pictures (AngleSpacing* Radii spacing)
\usepackage{pagecolor}%since a black background looks nice for this script
\usepackage[x11names]{xcolor}
%Defining Colors to be used
\definecolor{Vlad}{RGB}{254,154,132}
\definecolor{Vlad2}{rgb}{0.6,0,0}
\definecolor{Vlad3}{RGB}{77, 14, 10}
\definecolor{Giggler}{RGB}{240,165,85}
\definecolor{Anax2}{RGB}{46,139,87}
\definecolor{Anax1}{RGB}{154,205,50}
\definecolor{BoS1}{RGB}{222,184,135}
\definecolor{BoS2}{RGB}{165,42,42}
\definecolor{Dion1}{RGB}{228,191,250}
\definecolor{Dion2}{RGB}{148,0,211}
\pagecolor{black}\color{white}
\begin{document}
\newcommand{\ghostfontnow}[3]{%3 Vairables for the Font; #1Color of the Core of your font; #2Color of the Blur around your font #3 the Text you want to blur
\pgfmathsetmacro{\blurshradius}{1.5}%Like the Name says the Radius of the bluring for the shadowlike effect in units of ex so in heights of the letter x
% further variables used in dependence on the chosen blur Radius
\pgfmathsetmacro{\linesxoffsetsh}{2\blurshradius}
\pgfmathsetmacro{\lineyoffsetsh}{1.4\blurshradius}
\pgfmathsetmacro{\blurshradiusspacing}{\blurshradius*0.1}
\hspace{-\linesxoffsetsh ex}\raisebox{-\lineyoffsetsh ex}{\begin{tikzpicture}% since the blurs define the corners of the tikz box you have to readjust its position to be placed correctly inline
\draw [#1, opacity=1,align=left,text width=\textwidth] node at (0,0) {\rmfamily\bfseries\itshape#3\mdseries\upshape\sffamily};% Draw the solid text in the center
\foreach \a in {0,10,...,360}{%go the full 360 degree in a circle by 10 degree steps
\foreach \r in {0.,\blurshradiusspacing,...,\blurshradius}{%do it for different Radii from smallest chosen Radius to full Radius
\draw [#2, opacity=0.02,align=left,text width=\textwidth] node at (\a:\r ex) {\rmfamily\bfseries\itshape#3\mdseries\upshape\sffamily};% Draw the blur, by overlaying lowly transparent Text for all Radii and Angles
%Also Changing from serif less Normal script to serif, bold, italic for the text and back
}
}
\end{tikzpicture}}}
\par
Before the Picture some text:\par
\newcommand{\ghostfonttest}[2]{First seeing how it aligns inline\ghostfontnow{#1}{#2}{#1 is Color 1}\par
\ghostfontnow{#1}{#2}{#2 is color2}\par
\ghostfontnow{#1}{#2}{Now how it aligns by itself.\par
BlurrR Version:This text is a little bit blurry. Testing if the text produces correct formatting, if text is placed before the relevant parts. Testing if it is bugged in this case also relevant to know whether the command auto line breaks or whether it would have to always be done manually}}
\ghostfonttest{Vlad}{Vlad2}\par
\ghostfonttest{Anax1}{Anax2}\par
%\ghostfonttest{BoS1}{BoS2}\par
\ghostfonttest{Dion1}{Dion2}\par
\end{document}