Categories > Exploiting > WRD Exploit API >

Kill Roblox script


New Reply

Posts: 6

Threads: 2

Joined: Feb, 2023

Reputation: 0

  • 0

Posted

Does anyone know how to make a Kill roblox script in Visual Studio? because im making a roblox Exploit using Wearedevs_Api. thank you

Posts: 5

Threads: 2

Joined: Nov, 2022

Reputation: 2

  • 0

Replied

Code:

Process[] processesByName = Process.GetProcessesByName("RobloxPlayerBeta");
            for (int i = 0; i < processesByName.Length; i++)
            {
                Process process = processesByName[i];
                process.Kill();
            }

DiDi creator

Posts: 6

Threads: 2

Joined: Feb, 2023

Reputation: 0

  • 0

Replied

Thank you so much for helping me!

Posts: 25

Threads: 3

Joined: Mar, 2023

Reputation: 1

  • 0

Replied

@TheApis9, I am glad you received the help you needed, but please ensure you make threads in the correct channels. You should be posting this type of content in the C# Channel to receive help with C# code.

Join our Discord Server at https://discord.com/invite/Kzrt78AMMQ

Posts: 1918

Threads: 179

Joined: Apr, 2021

Reputation: 17

  • 0

Replied

Another example - this can also be made in a foreach loop.

foreach(Process proc in Process.GetProcesses()) {
    if(proc.ProcessName == "RobloxPlayerBeta") {
        proc.Kill();
    }
}

atariXD

atari | #ImmuneForMod

noticed Mention

Posts: 259

Threads: 11

Joined: Nov, 2022

Reputation: 43

  • 0

Replied

If you genuinely mean a kill Roblox "script", everyone above has the wrong concept.

ExploitAPI WeAreDevs = new(); // new ExploitAPI(); if under C# 10.0
WeAreDevs.SendLuaScript("game:Shutdown()");

Posts: 268

Threads: 22

Joined: May, 2020

Reputation: 16

  • 0

Replied

@VoidableMethod,

 

foreach (Process robloxProcess in Process.GetProcessesByName("RobloxPlayerBeta"))
                robloxProcess.Kill();

you dont need the if statment

Nitro#6522 | UI Designer | Programmer
---------------------------------------------------------------------------------------------------
💜 Developer of Kronos ðŸ’œ

Discord


New Reply

Users viewing this thread:


( Members: 0, Guests: 1, Total: 1 )