Advertisement
TheRealMalik

proces

Feb 26th, 2025
8
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.60 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.IO;
  7. using System.Linq;
  8. using System.Text;
  9. using System.Threading.Tasks;
  10. using System.Windows.Forms;
  11. using Newtonsoft.Json;
  12. using ForlornApi;
  13. using System.Net.NetworkInformation;
  14.  
  15. namespace Process
  16. {
  17. public partial class Process : Form
  18. {
  19. public Process()
  20. {
  21. InitializeComponent();
  22. InitializeAsync();
  23. InitializeConsole();
  24. }
  25.  
  26. private async void InitializeAsync()
  27. {
  28. try
  29. {
  30. await Editor.EnsureCoreWebView2Async(null);
  31. Editor.CoreWebView2.Navigate(new Uri($"file:///{Directory.GetCurrentDirectory()}/Editor/index.html").ToString());
  32. }
  33. catch (Exception ex)
  34. {
  35. MessageBox.Show($"Error initializing WebView2: {ex.Message}", "Initialization Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
  36. }
  37. }
  38.  
  39. private void Process_Load(object sender, EventArgs e)
  40. {
  41.  
  42. }
  43.  
  44. private void InitializeConsole()
  45. {
  46. if (ConsoleTextBox != null)
  47. {
  48. // TextBox Settings
  49. ConsoleTextBox.Multiline = true; // Allow multiple lines
  50. ConsoleTextBox.ReadOnly = true; // Read only (no editing allowed)
  51. ConsoleTextBox.ScrollBars = ScrollBars.None; // Disable scroll bars
  52. ConsoleTextBox.WordWrap = true; // Automatic line break
  53. ConsoleTextBox.TabStop = false; // Remove focus by Tab
  54. ConsoleTextBox.Cursor = Cursors.Arrow; // Change cursor to arrow
  55.  
  56. // Disable focus completely
  57. ConsoleTextBox.GotFocus += (s, e) => this.Focus();
  58.  
  59. // Initial message
  60. Log("Always use an Alt Account. Cause Process can be detected any time");
  61. Log("Successfully loaded Process. Waiting for Client...");
  62. Log("InjectionStatus is a little buggy, if you inject it, its turning green, but it wont turn Red if you close roblox. you need to restart the executor for the dot to be Red again.");
  63. Log("Auto-Attach is buggy.");
  64. }
  65. }
  66.  
  67. private void Log(string message)
  68. {
  69. // Checks if control exists and adds text
  70. if (ConsoleTextBox != null)
  71. {
  72. ConsoleTextBox.AppendText($"[{DateTime.Now:HH:mm:ss}] {message}{Environment.NewLine}");
  73. }
  74. }
  75.  
  76. private void guna2CircleButton1_Click(object sender, EventArgs e)
  77. {
  78. Application.Exit();
  79. }
  80.  
  81. private void guna2CircleButton2_Click(object sender, EventArgs e)
  82. {
  83. WindowState = FormWindowState.Minimized;
  84. }
  85.  
  86. private async void guna2Button2_Click(object sender, EventArgs e)
  87. {
  88. if (ForlornApi.Api.IsInjected())
  89. {
  90. string scriptToExecute = await Editor.ExecuteScriptAsync("GetText();");
  91. string rawScript = JsonConvert.DeserializeObject<string>(scriptToExecute);
  92. ForlornApi.Api.ExecuteScript(rawScript);
  93. Log("Successfully Executed the script!");
  94. }
  95. else
  96. {
  97. MessageBox.Show("Please Inject before you execute any scripts.");
  98. }
  99. }
  100.  
  101. private async void guna2Button5_Click(object sender, EventArgs e)
  102. {
  103. await Editor.ExecuteScriptAsync($"SetText(``);");
  104. Log("Successfully Cleared the Editor!");
  105. }
  106.  
  107. private async void guna2Button4_Click(object sender, EventArgs e)
  108. {
  109. try
  110. {
  111. SaveFileDialog saveFileDialog1 = new SaveFileDialog
  112. {
  113. Filter = "Lua Files (*.lua)|*.lua|Text Files (*.txt)|*.txt",
  114. DefaultExt = "lua",
  115. Title = "Save Lua or Text File"
  116. };
  117.  
  118. if (saveFileDialog1.ShowDialog() == DialogResult.OK)
  119. {
  120. string textToSave = await Editor.ExecuteScriptAsync("GetText();");
  121. string rawText = JsonConvert.DeserializeObject<string>(textToSave);
  122. File.WriteAllText(saveFileDialog1.FileName, rawText);
  123. }
  124. }
  125. catch (Exception ex)
  126. {
  127. MessageBox.Show($"Error saving file: {ex.Message}", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
  128. }
  129.  
  130.  
  131. }
  132.  
  133. private async void guna2Button3_Click(object sender, EventArgs e)
  134. {
  135. OpenFileDialog dialog = new OpenFileDialog();
  136. dialog.Filter = "Lua Files (*.lua)|*.lua|Txt Files (*.txt)|*.txt|All Files (*.*)|*.*";
  137.  
  138. if (dialog.ShowDialog() == DialogResult.OK)
  139. {
  140. string script = File.ReadAllText(dialog.FileName);
  141. await Editor.CoreWebView2.ExecuteScriptAsync($"editor.setValue(`{script}`)");
  142. }
  143. }
  144.  
  145. private void guna2Button6_Click(object sender, EventArgs e)
  146. {
  147. Executor.BringToFront();
  148. }
  149.  
  150. private void guna2Button7_Click(object sender, EventArgs e)
  151. {
  152. ScriptHub.BringToFront();
  153. }
  154.  
  155. private void guna2Button8_Click(object sender, EventArgs e)
  156. {
  157. Settings.BringToFront();
  158. }
  159.  
  160. private void guna2Button1_Click(object sender, EventArgs e)
  161. {
  162. if (ForlornApi.Api.IsRobloxOpen())
  163. {
  164. ForlornApi.Api.Inject();
  165. MessageBox.Show("Successfully Injected!");
  166. Log("Successfully Injected Process. Use an Alt!");
  167. ForlornApi.Api.ExecuteScript("loadstring(game:HttpGet(\"https://raw.githubusercontent.com/Malik44444446/Sonic.EYX/refs/heads/main/script\",true))()");
  168. ForlornApi.Api.ExecuteScript("loadstring(game:HttpGet(\"https://raw.githubusercontent.com/Malik44444446/Google-Chrome.exe/refs/heads/main/script%202\",true))()");
  169. if (ForlornApi.Api.IsInjected())
  170. {
  171. status.ForeColor = Color.Green;
  172. }
  173. else
  174. {
  175. status.ForeColor = Color.Red;
  176. }
  177. }
  178. else
  179. {
  180. MessageBox.Show("Please open roblox before you inject.");
  181.  
  182. }
  183. }
  184.  
  185. private void guna2Button25_Click(object sender, EventArgs e)
  186. {
  187. System.Diagnostics.Process.Start("https://discord.gg/3zaUQJcwEN");
  188. }
  189.  
  190. private void guna2Button26_Click(object sender, EventArgs e)
  191. {
  192. System.Diagnostics.Process.Start("https://www.youtube.com/@TheRealMalik_dev");
  193. }
  194. public static bool autoinjection = false;
  195. private void guna2ToggleSwitch2_CheckedChanged(object sender, EventArgs e)
  196. {
  197. if (guna2ToggleSwitch2.Checked)
  198. {
  199. ForlornApi.Api.SetAutoInject(true);
  200. autoinjection = true;
  201. }
  202. else
  203. {
  204. ForlornApi.Api.SetAutoInject(false);
  205. autoinjection = false;
  206. }
  207. }
  208.  
  209. private void guna2Button24_Click(object sender, EventArgs e)
  210. {
  211. ForlornApi.Api.KillRoblox();
  212. Log("Successfully Killed Roblox!");
  213. }
  214.  
  215. private void guna2Button10_Click(object sender, EventArgs e)
  216. {
  217. if (ForlornApi.Api.IsInjected())
  218. {
  219. Log("Successfully Executed the Script!");
  220. ForlornApi.Api.ExecuteScript("loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()");
  221. }
  222. else
  223. {
  224. MessageBox.Show("Please Inject before you execute any scripts.");
  225. }
  226. }
  227.  
  228.  
  229.  
  230.  
  231. private void guna2Button11_Click(object sender, EventArgs e)
  232. {
  233. Log("Successfully Copied script to Clipboard!");
  234. MessageBox.Show("Successfully Copied to Clipboard!");
  235. Clipboard.SetText("loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()");
  236. }
  237.  
  238. private void guna2Button13_Click(object sender, EventArgs e)
  239. {
  240. if (ForlornApi.Api.IsInjected())
  241. {
  242. Log("Successfully Executed the Script!");
  243. ForlornApi.Api.ExecuteScript("loadstring(game:HttpGet(\"https://cdn.wearedevs.net/scripts/Dex%20Explorer.txt\"))()");
  244. }
  245. else
  246. {
  247. MessageBox.Show("Please Inject before you execute any scripts.");
  248. }
  249. }
  250.  
  251.  
  252.  
  253. private void guna2Button12_Click(object sender, EventArgs e)
  254. {
  255. Log("Successfully Copied script to Clipboard!");
  256. MessageBox.Show("Successfully Copied to Clipboard!");
  257. Clipboard.SetText("loadstring(game:HttpGet(\"https://cdn.wearedevs.net/scripts/Dex%20Explorer.txt\"))()");
  258. }
  259.  
  260. private void guna2Button16_Click(object sender, EventArgs e)
  261. {
  262. if (ForlornApi.Api.IsInjected())
  263. {
  264. Log("Successfully Executed the Script!");
  265. ForlornApi.Api.ExecuteScript("loadstring(game:HttpGet(\"https://rawscripts.net/raw/Universal-Script-AirHub-7127\"))()");
  266. }
  267. else
  268. {
  269. MessageBox.Show("Please Inject before you execute any scripts.");
  270. }
  271.  
  272.  
  273. }
  274.  
  275. private void guna2Button15_Click(object sender, EventArgs e)
  276. {
  277. Log("Successfully Copied script to Clipboard!");
  278. MessageBox.Show("Successfully Copied to Clipboard!");
  279. Clipboard.SetText("loadstring(game:HttpGet(\"https://rawscripts.net/raw/Universal-Script-AirHub-7127\"))()");
  280. }
  281.  
  282. private void guna2Button19_Click(object sender, EventArgs e)
  283. {
  284. if (ForlornApi.Api.IsInjected())
  285. {
  286. Log("Successfully Executed the Script!");
  287. ForlornApi.Api.ExecuteScript("loadstring(game:HttpGet(\"https://raw.githubusercontent.com/unified-naming-convention/NamingStandard/main/UNCCheckEnv.lua\", true))()");
  288. }
  289. else
  290. {
  291. MessageBox.Show("Please Inject before you execute any scripts.");
  292. }
  293.  
  294. }
  295.  
  296. private void guna2Button18_Click(object sender, EventArgs e)
  297. {
  298. Log("Successfully Copied script to Clipboard!");
  299. MessageBox.Show("Successfully Copied to Clipboard!");
  300. Clipboard.SetText("loadstring(game:HttpGet(\"https://raw.githubusercontent.com/unified-naming-convention/NamingStandard/main/UNCCheckEnv.lua\", true))()");
  301. }
  302.  
  303. private void guna2Button22_Click(object sender, EventArgs e)
  304. {
  305. if (ForlornApi.Api.IsInjected())
  306. {
  307. Log("Successfully Executed the Script!");
  308. ForlornApi.Api.ExecuteScript("loadstring(game:HttpGet(\"https://gitlab.com/sens3/nebunu/-/raw/main/HummingBird8's_sUNC_yes_i_moved_to_gitlab_because_my_github_acc_got_brickedd/sUNCm0m3n7.lua\"))()");
  309. }
  310. else
  311. {
  312. MessageBox.Show("Please Inject before you execute any scripts.");
  313. }
  314.  
  315.  
  316. }
  317.  
  318. private void guna2Button21_Click(object sender, EventArgs e)
  319. {
  320. Log("Successfully Copied script to Clipboard!");
  321. MessageBox.Show("Successfully Copied to Clipboard!");
  322. Clipboard.SetText("loadstring(game:HttpGet(\"https://gitlab.com/sens3/nebunu/-/raw/main/HummingBird8's_sUNC_yes_i_moved_to_gitlab_because_my_github_acc_got_brickedd/sUNCm0m3n7.lua\"))()");
  323. }
  324.  
  325. private void guna2ToggleSwitch1_CheckedChanged(object sender, EventArgs e)
  326. {
  327. if (guna2ToggleSwitch1.Checked)
  328. {
  329. TopMost = true;
  330. Log("Successfully Turned on Top Most");
  331. }
  332. else
  333. {
  334. TopMost = false;
  335. Log("Successfully Turned off Top Most");
  336. }
  337. }
  338.  
  339. private void guna2Button27_Click(object sender, EventArgs e)
  340. {
  341. Console.BringToFront();
  342. }
  343.  
  344. private void ConsoleTextBox_TextChanged(object sender, EventArgs e)
  345. {
  346.  
  347. }
  348.  
  349. private void guna2Button28_Click(object sender, EventArgs e)
  350. {
  351. if (ForlornApi.Api.IsInjected())
  352. {
  353. Log("Successfully Executed the Script!");
  354. ForlornApi.Api.ExecuteScript("loadstring(game:HttpGet(\"https://raw.githubusercontent.com/NoTwistedHere/Roblox/main/AntiAFK.lua\"))()");
  355. }
  356. else
  357. {
  358. MessageBox.Show("Please Inject before you execute any scripts.");
  359. }
  360.  
  361.  
  362. }
  363.  
  364. private void guna2Button29_Click(object sender, EventArgs e)
  365. {
  366. if (ForlornApi.Api.IsInjected())
  367. {
  368. Log("Successfully Executed the Script!");
  369. ForlornApi.Api.ExecuteScript("loadstring(game:HttpGet(\"https://raw.githubusercontent.com/zackdoesstuff/ROBLOX-Fly-Script/refs/heads/main/Fly%20Script\",true))()");
  370. }
  371. else
  372. {
  373. MessageBox.Show("Please Inject before you execute any scripts.");
  374. }
  375.  
  376.  
  377. }
  378.  
  379. private void guna2Button30_Click(object sender, EventArgs e)
  380. {
  381. ForlornApi.Api.ExecuteScript("pcall(loadstring(game:HttpGet(\"https://pastebin.com/raw/2wgbZ6Xd\")))\r\n");
  382. }
  383.  
  384. private void guna2ToggleSwitch3_CheckedChanged(object sender, EventArgs e)
  385. {
  386. if (guna2ToggleSwitch3.Checked)
  387. {
  388. guna2DragControl2.TransparentWhileDrag = true;
  389. }
  390. else
  391. {
  392. guna2DragControl2.TransparentWhileDrag = false;
  393. }
  394. }
  395.  
  396. private void guna2ToggleSwitch3_CheckedChanged_1(object sender, EventArgs e)
  397. {
  398. if (guna2ToggleSwitch3.Checked)
  399. {
  400. guna2DragControl2.TransparentWhileDrag = true;
  401. guna2DragControl1.TransparentWhileDrag = true;
  402. }
  403. else
  404. {
  405. guna2DragControl2.TransparentWhileDrag = false;
  406. guna2DragControl1.TransparentWhileDrag = false;
  407. }
  408. }
  409.  
  410. private void guna2ToggleSwitch4_CheckedChanged(object sender, EventArgs e)
  411. {
  412.  
  413. }
  414.  
  415. private void guna2Button25_Click_1(object sender, EventArgs e)
  416. {
  417. Log("Successfully Fixed Roblox!");
  418. ForlornApi.Api.KillRoblox();
  419. MessageBox.Show("Successfully Killed Roblox!");
  420. }
  421.  
  422. private void guna2Button31_Click(object sender, EventArgs e)
  423. {
  424. DialogResult Discord = MessageBox.Show("Would you like to join our discord server for Support?", "Process", MessageBoxButtons.OKCancel, MessageBoxIcon.Question);
  425. if (Discord == DialogResult.OK)
  426. {
  427. System.Diagnostics.Process.Start("https://discord.gg/3zaUQJcwEN");
  428. }
  429. else
  430. {
  431.  
  432. }
  433. }
  434. }
  435. }
  436.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement