Beispiel #1
0
        private void button1_Click(object sender, EventArgs e)
        {
            string the42Gzy24isgay = richTextBox1.Text;

            NamedPipes.LuaPipe(the42Gzy24isgay);
            richTextBox2.Text += ("\r\n") + ("Sending script");
        }
Beispiel #2
0
        private void button4_Click(object sender, EventArgs e)
        {
            string script = ("game.JointsService.WeldRequest:FireServer(\"gui\")");

            NamedPipes.LuaPipe(script);
            MessageBox.Show("Serverside ran! If the GUI dosen't show up, make sure that you are in a serversided game! Check our discord in #serversided-games for a list of serversided games! Also note that this functions is still in beta...", "Notice");
        }
Beispiel #3
0
        public static string exploitdllname = "MainDab.dll";//Axon.dll this is the name of your dll

        public static void Inject()
        {
            new Thread(() =>
            {
                if (NamedPipes.NamedPipeExist(NamedPipes.luapipename))                                            //check if the pipe exist
                {
                    MessageBox.Show("Already injected!", "Error", MessageBoxButtons.OK, MessageBoxIcon.Asterisk); //if the pipe exist that's mean that we don't need to inject
                    return;
                }
                else if (!NamedPipes.NamedPipeExist(NamedPipes.luapipename))                                                                     //check if the pipe don't exist
                {
                    switch (Injector.DllInjector.GetInstance.Inject("RobloxPlayerBeta", AppDomain.CurrentDomain.BaseDirectory + exploitdllname)) //Process name and dll directory
                    {
                    case Injector.DllInjectionResult.DllNotFound:                                                                                //if can't find the dll
                        MessageBox.Show("MainDab.dll was not found! Please restart the application!");                                           //display messagebox to tell that dll was not found
                        return;

                    case Injector.DllInjectionResult.GameProcessNotFound:                                //if can't find the process
                        MessageBox.Show("Couldn't find RobloxPlayerBeta.exe!", "Roblox isn't started!"); //display messagebox to tell that proccess was not found
                        return;

                    case Injector.DllInjectionResult.InjectionFailed:                                                                                                      //if injection fails(this don't work or only on special cases)
                        MessageBox.Show("Injection Failed!", "Failed for whatever reason (try kill roblox or restart ur pc)", MessageBoxButtons.OK, MessageBoxIcon.Error); //display messagebox to tell that injection failed
                        return;
                    }
                }
            }).Start();
        }
Beispiel #4
0
        private void button1_Click(object sender, EventArgs e)
        {
            HtmlDocument text       = MonacoEditor.Document;
            string       scriptName = "GetText";

            object[] args   = new string[0];
            object   obj    = text.InvokeScript(scriptName, args);
            string   script = obj.ToString();

            NamedPipes.LuaPipe(script);
        }