コード例 #1
0
 private void executeToolStripMenuItem_Click(object sender, EventArgs e)
 {
     if (this.listBox1.SelectedIndex != -1)
     {
         string Input = (File.ReadAllText("scripts\\" + this.listBox1.SelectedItem.ToString()));
         api.ExecuteScript("" + Input);
     }
 }
コード例 #2
0
ファイル: Scripts.cs プロジェクト: Femboyy/3NIGMA
        private void Walkspeed(object sender, KeyPressEventArgs e)
        {
            string value = textBox1.Text;

            if (value == "attach")
            {
                api.LaunchExploit();
            }
            else
            {
                if (e.KeyChar == Convert.ToChar(Keys.Return))
                {
                    api.ExecuteScript("game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = " + value);
                }
            }
        }
コード例 #3
0
ファイル: BSPLOIT.cs プロジェクト: kuca00/BSploit
 private void EXLUA_Click(object sender, EventArgs e)
 {
     API.ExecuteScript(ScriptTXT.Text);
 }
コード例 #4
0
ファイル: Form2.cs プロジェクト: TheOrangeYoshi/roblox-hacks
 private void flatButton1_Click(object sender, EventArgs e)
 {
     module.ExecuteScript(fastColoredTextBox1.Text);
 }
コード例 #5
0
        private void button3_Click(object sender, EventArgs e)
        {
            string input = ScriptBox.Text;

            api.ExecuteScript(input);
        }