TheRedGamingNL

Kill roblox script

May 30th, 2020
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.31 KB | None | 0 0
  1. Process[] roblox = Process.GetProcesses();
  2.                 foreach(Process openedroblox in roblox)
  3.             {
  4.                 bool flag = openedroblox.ProcessName == "RobloxPlayerBeta";
  5.                 if(flag)
  6.                 {
  7.                     openedroblox.Kill();
  8.                 }
  9.             }
Add Comment
Please, Sign In to add comment