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); } }
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); } } }
private void EXLUA_Click(object sender, EventArgs e) { API.ExecuteScript(ScriptTXT.Text); }
private void flatButton1_Click(object sender, EventArgs e) { module.ExecuteScript(fastColoredTextBox1.Text); }
private void button3_Click(object sender, EventArgs e) { string input = ScriptBox.Text; api.ExecuteScript(input); }