✅ Error code 127 (Windows)
IntPtr hKernel32 = GetModuleHandle("kernel32.dll");
if (hKernel32 == IntPtr.Zero)
{
Console.WriteLine("Failed to get module handle for kernel32.dll. Error: " + Marshal.GetLastWin32Error());
return false;
}
IntPtr loadLibraryAddr = GetProcAddress(hKernel32, "LoadLibraryA");
if (loadLibraryAddr == IntPtr.Zero)
{
Console.WriteLine("Failed to get address of LoadLibraryA. Error: " + Marshal.GetLastWin32Error());
return false;
}
It fails to get me the address of LoadLibraryA
10 Replies
What are you making?
I am trying to make a tool that allows me to inject dlls into a process, but i can't get it done because of this bug
Unknown User•3mo ago
Message Not Public
Sign In & Join Server To View
does it matter for what it is?
Unknown User•3mo ago
Message Not Public
Sign In & Join Server To View
Let me worry about that... the process is found but i still have that bug
Unknown User•3mo ago
Message Not Public
Sign In & Join Server To View
If you have no further questions, please use /close to mark the forum thread as answered
Alright alright, so i want to make an executor for roblox, the "front end" is done and working, is made in java, and i just need to fix this part and is done
Not something we help with here.
It is also against Discord's Terms of Service