Activity Feed
Replied to thread : [BUG] Global chat not closing
If your screen is large enough, the chat is set to always display and be docked to the right
Replied to thread : [Question] Github Pages
Just create a repository called yourusername.github.io then drop your html, css, and js in there. Like usual, index.html would be the home page.
Commented to thread : [Lua C] How to replicate R/Lua Methods
Reuploaded my 2017 post from V3rmillion to WRD
Created a new thread : [Lua C] How to replicate R/Lua Methods
[Disclaimer] : These are not actually Lua methods. They are just functions I put together that perform similarly to the real method.
Honestly, I am not the best at explaining, nor am I the best at teaching. Though I do want to help out and share my ideas in hopes of improving your exploit related content. I'm sure that a lot of you learn well through examples(Your math class probably teaches you this way), so I will try to do so and then explain them as far and as concise as I can.
Below is some pre-made code example for yall to use or check out(No credits are expected, though it would be nice). You can apply the ideas below to other R/RLua methods. This can definitely aid in the process of creating a super basic limited Lua executor
Out of all of the leaked sources I have checked out, I haven't seen anything like this. Usually when I see FindFirstChild being used, its just getfield("FindFirstChild"); this may be practical when all you need to do is lead yourself to the object you know exists, but what if this object doesn't exist? Continuing to add to the stack will often crash the game. Maybe you need to actually check if the instance exists.
To replicate the FindFirstChild method, we can do this by looping through the children of the instance at the top of the stack, and for each iterated object, we check its name. For the first child we find, we return it.
bool FindFirstChild(std::string Name) {
std::string childsName;
std::string test;
getfield(-1, "GetChildren");
pushvalue(-2);
pcall(1, 1, 0);
pushnil();
while (next(-2) != 0) {
getfield(-1, "Name");
if (std::string(tostring(-1)) == Name) {
pop(1);
return true;
}
pop(2);
}
pop(1);
return false;
}
C++ usage version:
getglobal ("game");
getfield ("Workspace");
if(FindFirstChild("GroupOfParts")){ //execute code }
Lua Version:
if game.Workspace:FindFirstChild("GroupOfParts") then
--execute code;
end
Maybe we want to replicate the IsA Method. We can do this by checking the objects ClassName property and comparing to see if its what we want.
bool IsA(std::string ClassName) {
std::string classType;
getfield(-1, "ClassName");
classType = std::string(tostring(-1));
if (classType == ClassName) {
pop(1); //Return to original stack top
return true; //Leaves object at the top of the stack
}
pop(2); //Return to original stack top
return false;
}
C++ usage version:
getglobal ("game");
getfield ("Workspace");
getfield ("GroupOfParts");
if(IsA("Model")){ //execute code }
Lua Version:
if game.Workspace.GroupOfParts:IsA["Model"] then
--execute code
end
We can even do this for functions as basic as RemoveAccessories which returns nothing. This may not be practical, but my point here is to show that you can pretty much replicate most of RLua/Lua's methods.
void RemoveAccessories(){
getfield("RemoveAccessories ");
pushvalue(-2)
pcall(1, 0, 0);
}
C++ usage version:
getglobal("game");
getfield("Workspace");
getfield("Player");
getfield("Humanoid");
Lua Version:
game.Workspace.Player.Humanoid:RemoveAccessories()
Replied to thread : the situation.
Would be interesting to make a subcategory that only let's "featured" developers post
Replied to thread : the situation.
I can't demand people to post unique content. I can't demand people post anything really. This is a public community with no obligation behind it. People will post what they will, as they do on V3rm, TikTok, YouTube, etc.
I also think it's kind of bogus to delete threads for not being up to par with someone's standards. Many people use pre-released work and modify it in the beginning of their coding journey. Like when using Roblox free models to copying YouTube tutorials when you don't have a set foundation yet.
If you want this forum to be some high experienced coder only place, that's heavy. This community is full of kids who make stuff for kicks. Who knows if they even have that much free time. They probably have other interests or homework to get to. Hell, Roblox itself is that way. Most games made are utter trash or use free models. There's so many people, that the .01% of actual good content looks like it's in abundance. This forum is tiny, so it would never look that way. In any open community, most content will be garbage
Replied to thread : [REQUEST TO REMOVE] Remove Rogue Hub from the scripts page. (Or not)
Removed it just now, thank you for pointing this out.
Replied to thread : I'm taking a break
Thank you for all the postivity you've brought to this community
Replied to thread : Scroll to Load More
Man more and more I wish I wrote the site with React. The load more buttons kick my ass with creating dynamic HTML. If I edit the server side render, I have to edit the client rendering too.
This is a great idea tho
Replied to thread : Help me buy a car
Factor this- If it's your first car, you'll likely want to trade after a couple years. Few people stick with their first decision for long.
A Ford and a Kia tho? Idk how times are now for thise brands. They may look nice, but reliability was a common problem. Give Honda or Toyota some looking too
Replied to thread : [HELP ME] Can't acces to my account
DM, but you have any way to prove your identity? Maybe you partially remember your email address?
Replied to thread : None of the exploits work
You can only modify what you see. Like you can change your walkspeed or jump height. However, changes to yourself like that, can be seen by others. They will see you jump higher, walk faster, and seemingly walk through walls, which you actually deleted.
Some things, you can affect for the entire server, through firing server events. Though that required more advanced knowledge. Using scripts like these are always game specific
Replied to thread : [WARNING] Ishan is gonna attempt to attack wearedevs
I didn't even ban him tho?? Why attack me? The only person it inconveniences is the site admin and not whoever actually decided on it. Makes no sense.
Not that the actual people who considered banning should be attacked. It's very scummy to defend someone who'd steal their own moms identity. This also makes no sense to be so hurt over. Some people are really just dirt