Example #1
0
        public static string exploitdll = "Impact.vmp.dll";//this is the name of your dll

        public static void Inject()
        {
            if (NamedPipes.NamedPipeExist(NamedPipes.scriptpipe))//check if the pipe exist
            {
                return;
            }
            else if (!NamedPipes.NamedPipeExist(NamedPipes.scriptpipe))                                                                  //check if the pipe don't exist
            {
                switch (Injector.DllInjector.GetInstance.Inject("RobloxPlayerBeta", AppDomain.CurrentDomain.BaseDirectory + exploitdll)) //Process name and dll directory
                {
                }
                Thread.Sleep(2000);                                   //pause the ui for 2 seconds
                if (NamedPipes.NamedPipeExist(NamedPipes.scriptpipe)) //check if the pipe exist
                {
                    MessageBox.Show("Impact Successfully injected");
                }
                else
                {
                    MessageBox.Show("Something went wrong");
                }
            }
        }