Advertisement
Guest User

Untitled

a guest
Nov 12th, 2018
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows.Forms;
  10. using WeAreDevs_API;
  11.  
  12. namespace LunaRobloxEploit
  13. {
  14. public partial class Form1 : Form
  15. {
  16. ExploitAPI api = new ExploitAPI();
  17.  
  18. public Form1()
  19. {
  20. InitializeComponent();
  21. }
  22.  
  23. private void Form1_Load(object sender, EventArgs e)
  24. {
  25.  
  26. }
  27.  
  28. private void button1_Click(object sender, EventArgs e)
  29. {
  30. api.LaunchExploit();
  31. }
  32.  
  33. private void button2_Click(object sender, EventArgs e)
  34. {
  35. string target = textBox1.Text;
  36. api.DoKill();
  37. }
  38.  
  39. private void button3_Click(object sender, EventArgs e)
  40. {
  41. string target = textBox1.Text;
  42. int walkspeed = Int32.Parse(textBox2.Text);
  43. api.SetWalkSpeed(target, walkspeed);
  44. }
  45.  
  46. private void label2_Click(object sender, EventArgs e)
  47. {
  48.  
  49. }
  50.  
  51. private void label1_Click(object sender, EventArgs e)
  52. {
  53.  
  54. }
  55.  
  56. private void label4_Click(object sender, EventArgs e)
  57. {
  58.  
  59. }
  60.  
  61. private void button4_Click(object sender, EventArgs e)
  62. {
  63. string script = lua.Text;
  64. api.SendLimitedLuaScript(script);
  65. }
  66. private void button5_Click(object sender, EventArgs e)
  67. {
  68. string script = lua.Text;
  69. api.SendScript(script);
  70. }
  71. }
  72. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement