Activity Feed
Replied to thread : You can copy this game
Copying a game isnt simple unless the publisher specifically allows it. If you really want to, it might be worth taking a look at Dex, you will need an executor for it, but it can in most cases save parts of the game. You should know however, that on even the best of executors, you will not get serverside scripts. Only LocalScripts and ModuleScripts can be decompiled, as serverside scripts never get sent to the user (its called serverside for a reason). If your wishing to preserve the functions of the cars, then your outta luck. I can tell you however, it probably wouldnt be too hard to find a pre-existing vehicle script, modify it, and "transplant" it to the car.
Replied to thread : problem with API.LaunchExploit();
You dont need to pass anything as an argument. That exception is coming from the WeAreDevs api and happens as a result of the api being dead. Cut the losses and hope a byfron compatible exploit is made that is avail for public use.
Replied to thread : have error in c# in resource
I presume your adding them to the Resx file. In such case you can easily manipulate it. One of my projects does this.
var resource = Properties.Resources.requiredfile;
FileStream fileStream = new FileStream("My cool file.txt", FileMode.CreateNew);
for (int i = 0; i < resource.Length; i++)
fileStream.WriteByte((byte)resource[i]);
fileStream.Close();
this code assumes the file is stored under the name "requiredfile" and that you want to save it to "My cool file.txt"
Replied to thread : Fluxus shuts down at the same time as it installs.
Fluxus has had MASSIVE amounts of people leave their dev team. Fluxus is practically going the same way as Krnl, so just cut the losses and find another free executor.
Commented to thread : How to bypass most ad systems.
Well if your talking about mobile games the answer is no. However if you want something that CAN do that for mobile games you could get pi-hole
Created a new thread : How to bypass most ad systems.
A few months ago I made a post about How to bypass linkvertise ads (PHP Systems Included!). Alot has changed since then.
Theres a new website called Bypass.city. Bypass.city gives a new bypasser for even work.ink links. Theres also a new website starting to be used in order for exploit makers to make money called filedm. Filedm is like linkvertise in that it gives an installer stuffed to the brim with ads.
1st Bypass.city way:
Go to bypass.city
Paste in your adlink
Click Bypass
click the link it gives you (there may be a few popups but just close out of them.)
Enjoy!
2nd Bypass.city way
Install TamperMonkey
Install bypass.city script
Go to the adlink website
Watch Bypass.city work its magic
Enjoy!
FileDM
FileDM doesnt have a bypass, but there is still a way to not exit the installer with 20 new viruses detected.
1. Download and open the FileDM installer.
2. Click Next.
3. DECLINE ALL OFFERS (Some have checkboxes so read carefully)
4. Paste link in browser.
Replied to thread : How should I proceed with learning le CSharp?
https://www.w3schools.com/cs/index.php
Created a new thread : How to write your own exploit UI in HTML, CSS and Javascript
If I told you you could write the UI for an exploit in html, css and js, and said you would have to write very little C#, would you belive me?
https://github.com/realrohaxexploits/HTMLHAX/tree/main is an extendable program designed to convert javascript functions into C# functions. It behaves just like Electron. Giving you a browser interface with extra features. Allowing anyone to make an exploit with little C# experience.
Created a new thread : Replace WinRar
For as long as I can remember (june 2019), WinRAR has sat at the bottom of the page slowly being downloaded. As the community might know, you get 40 days of free winrar, then it annoys you with a pop up every time you open it.
Might I suggest something new?
PeaZip does everything winrar does, but better.
It supports 200+ file formats
It is free forever, no popup ads.
Supports linux natively without wine
Is open source (Though it is written in pascal so i doubt many people will understand it)
Comes with really neat icons for archives.
Handles Decryption well.
Is beginner friendly (good for the 9 year olds that come here)
And before you ask, no. I am not being paid to say this. I just love peazip and Im sure the community will too.
Created a new thread : How to bypass linkvertise ads (PHP Systems Included!)
Before I explain how this works I need to explain why im telling this to everyone. Not long ago Linkvertise started forcing you to download software.
Inside this bundle of adware is an app dedicated to sending you nodifications. Now for all you developers out there: No. You dont get paid for those. Linkvertise gets the money from YOUR creation.
I understand the developer's wants to use ads, but linkvertise is not the way.
Anyway, with that out of the way let me explain how this works.
First: Grab the linkvertise URL.
Second: Go to https://thebypasser.com/ and paste the linkvertise URL in the textbox. (Note the site will have ads but just close out of the tabs.)
Third: Go back to linkvertise. Go to Inspect Element > "Console" Tab
Fourth: Paste the Script with url you got from thebypasser into the console.
window.location.href = "https://cool-xploits-4-u.xyz/key.php"
Last: Press Enter and wait to be taken to your site.
I am sorry to all the devs, but theres not much we can do. PLEASE change your ad hosting. I hear one of them pays 22.50 per 1k clicks. Since many exploits have 1M+ Downloads it could be worth a pretty penny.
Created a new thread : Anti Kick Btools.
Everyone here knows that some game devs have made scripts to block btools, However, 99% of them are based on the same principal. Now I am sure everyone here knows that btools is just hopperbin. With that being how most people detect and ban us, what if we did something else...
This is my Anti Anti Btools script:
mouse = game.Players.LocalPlayer:GetMouse()
tool = Instance.new("Tool")
tool.RequiresHandle = false
tool.Name = "BTOOLS"
tool.ToolTip = "Btools without being kicked."
tool.Activated:connect(function()
local obj = mouse.Target
obj:Destroy()
end)
tool.Parent = game.Players.LocalPlayer.Backpack
Now this script comes with an added bonus, it can delete borders. Borders being invisible parts that btools cannot detect and delete.
The only issue is some games block the backpack, you can undo that using the following script.
local StarterGui = game:GetService("StarterGui")
StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
If anyone would like to use the tool script for something else, go ahead idc what you do with it.
Two simple script people would of overlooked.
(Btw its good to be back.)