Client Crashes when a Video Widget should load a video
layoutRoot = GetGame().GetWorkspace().CreateWidgets( "BallerbudeServerPack/gui/layouts/spawnmenu.layout" ); videoWidget = VideoWidget.Cast( layoutRoot.FindAnyWidget("videobg") ); if (videoWidget) { Print("Trying to load video"); videoWidget.LoadVideo("BallerbudeBG.mp4",0); // Crash happens here, when I try to load the Video file. I also tried many different Paths, but no success } else { Print("Video Widget not found !"); }