Activity Feed
Commented to thread : JJslpoit crashes
are you running jjsploit from the archive? maybe that's the issue
Replied to thread : [PRE RELEASE] Omega - FREE Executor
u got your account back sick
is this the same ui as the lunar wrapper had?
Replied to thread : The API isn't working for me
the new one is not a C# .dll which you can reference.
there's a new example project, but i will save you the download:
first, make sure your project is set to `x64` instead of `Any CPU`. this is because Roblox switched to 64-bit in the recent years.
next, you have to put the exploit api .dll file in your app's `bin\x64\Release` folder
^ or embed it as a resource which gets copied to the build folder
then, inside your code, use these lines from the example to declare the functions:
(pastebin link because the wrd blacklisted word filter false-detects bad words inside this code)
https://pastebin.com/N76MhG57
you want to call `initialize()` before you call any function from the api, this is a basic winforms snippet: public Form1()
{
InitializeComponent();
initialize();
}
after initializing, run `execute(script)` to execute your script: (this is from the official example) private void btnExecute_Click(object sender, EventArgs e)
{
string script = txtScript.Text;
execute(script);
}
and to check if the exploit is attached currently, they recommend having a timer which calls `isAttached` periodically: (this is also from the official example)
private void timerAttachChecker_Tick(object sender, EventArgs e)
{
bool attached = isAttached();
if (attached)
{
labelStatus.Text = "Status: Attached";
labelStatus.ForeColor = Color.Green;
}
else
{
labelStatus.Text = "Status: Not attached";
labelStatus.ForeColor = Color.Red;
}
}
Replied to thread : antivirus help
is your windows defender off?
specifically the "real-time protection" toggle
to disable windows defender,
go to Settings > Privacy and security > Windows security > Virus and threat protection
then, click "Manage settings" under where it says "Virus and thread protection settings"
and lastly, toggle off "Real-time protection" (the first option)
Replied to thread : Blade Ball Anticheat
may be because of the notification jjsploit api gives you on the bottom right when it attaches, ive seen people posting how to detect executors on the official roblox forum
Replied to thread : Herbert V1 (https://github.com/LuaGunsX/HerbertV1)
i think this is far from a "Commonly" used script
what even is herbert v1 anyway?
Created a new thread : (UI Inspiration) 27 Executor UI Designs I found
https://imgur.com/a/0vlAx6f
These are from all over the years but yeah some inspiration
Created a new thread : (Unofficial Release) Managed .NET WRD API Wrapper
this allows you to add the .dll to references
edit on 24th June: I may write a better version which doesnt extract the file to temp, but I will see
edit: nope most definitely not
i know i know this is probably what the most skiddiest of skids could do.
the actual dll is an embedded resource which gets unpacked into temp.
"unofficial" because the real wrapper doing all the stuff behind the scenes is obviously not mine
Download:
VirusTotal:
https://www.virustotal.com/gui/file/36f33fe5d90cbc5f2873e0ec78f7d807f4e31ba105b66358a86e40334f6ac53c?nocache=1
Download:
https://www.mediafire.com/file/v5attq7v94phcsv/ManagedWRD.dll/file
Source Code:
https://www.mediafire.com/file/lr5l3idpnm1fuqf/ManagedWRD+SOURCE+CODE.zip/file
Docs:
Namespace:
WeAreDevsAPI
Methods:
byte Initalize()
void ExecuteScript(string script)
Properties:
bool IsAttached
Usage:
Showcase:
https://imgur.com/a/TJT6e9L
Usage:
https://imgur.com/a/hTFmHws
Remember:
- You NEED to call Initialize() before anything else
- The API auto-attaches
- ^ If it is stuck on initializing while your Roblox is open, it is probably patched, just wait.
- The original code had the key system, it's not something that I added.
Commented to thread : (Winforms) Rate a UI
thanks, back in 2022 i thought i was the winforms jagged rounded corners guy
Created a new thread : (Winforms) Rate a UI
Yeeess, I still didn't make the switch to WPF..
I revisited this website yesterday and saw the exploit api was available, played around with it and it worked.
So, today I decided to make a random executor, it's made with .NET C# Winforms.
It took me under 24 hours to make this, there are probably some bugs but eh
It is resizable (notice the grip), + has some custom controls written for it.
Based on who you are the source may look like crap
VirusTotal:
https://www.virustotal.com/gui/file/74d63a5a6b8b67e9c0858045515edb5f8b2d405d40af98e81c8520ca3e71845c?nocache=1
Release Binaries:
https://www.mediafire.com/file/acm94v58221s5ns/Release.zip/file
Source Code:
It won't run if you dont have the necessary API dll and Monaco files, just download the "Release.zip" and but it in /bin/.
After that, your future builds will start working.
https://www.mediafire.com/file/lmfrfe2vkp331i5/WindowsFormsApp14.zip/file
Video:
https://i.imgur.com/3dIAVXW.mp4
Photos:
(sorry for this but my imgur embeds seem to just disappear????)
https://imgur.com/a/l2XEROD
https://i.imgur.com/VkRvHoq.png
https://i.imgur.com/GJhwIxg.png
https://i.imgur.com/QKDdAKG.png
https://i.imgur.com/nZH47T1.png