Put a text Box at the top of your Exploit and make it non usable and do this
 public partial class Form1 : Form
  {
    ExploitAPI api = new ExploitAPI();
    public Form1()
    {
      InitializeComponent();
    }
    // Sets the interpret options and boolean option
    int mouseX = 0, mouseY = 0;
    bool mouseDown;
then click on Events scroll down to mouse and double click MouseDown
then type this
mouseDown = true;
then go back to events, then to mouse then double click mouseMove then type
      if (mouseDown)
      {
        mouseX = MousePosition.X - 40;
        mouseY = MousePosition.Y - 40;
        this.SetDesktopLocation(mouseX, mouseY);
      }
    }
then go back to events and Mouse and double click on MouseUp then type
mouseDown = false;
Cancel
Post