Advertisement
Guest User

Roblox Exploit Code CC

a guest
Apr 24th, 2018
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.26 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 WindowsFormsApplication23
  13. {
  14. public partial class Form1 : Form
  15. {
  16. ExploitAPI api = new ExploitAPI();
  17. public Form1()
  18. {
  19. InitializeComponent();
  20. }
  21.  
  22. private void button1_Click(object sender, EventArgs e)
  23. {
  24. api.LaunchExploit();
  25. }
  26.  
  27. private void button2_Click(object sender, EventArgs e)
  28. {
  29. string username = textBox1.Text;
  30. api.DoKill(username);
  31. }
  32.  
  33. private void button3_Click(object sender, EventArgs e)
  34. {
  35. string username = textBox1.Text;
  36. api.CreateForceField(username);
  37. }
  38.  
  39. private void button4_Click(object sender, EventArgs e)
  40. {
  41. string input = richTextBox1.Text;
  42. api.SendScript(input);
  43. }
  44.  
  45. private void button5_Click(object sender, EventArgs e)
  46. {
  47. string username = textBox1.Text;
  48. api.RemoveForceField(username);
  49. }
  50. }
  51. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement