Categories > Exploiting > WRD Exploit API >

Is there a way to make a game hub with WeAreDevs api

Posts: 1

Threads: 1

Joined: Nov, 2021

Reputation: 0

Posted

i recently wanted to make a executor and i got a problem i wanted to make a game hub

with WeAreDevs api but i cant find a way to make it

and i only saw few yt vids

but they all show how to make it with easy expliots api

but i want to us WeAreDevs

so can someone help me

  • 0

MainDab

Main_EX

Posts: 467

Threads: 39

Joined: Sep, 2020

Reputation: 11

Replied

of course you can make a game hub, here is something really simple I would do

 

Step 1

I would make a new window for this script hub

 

Step 2

Make buttons for each game, preferably images, you can create picturebox in winforms or something similar and add a onleftclick or some sort of event to it. You can do this by going to the properties of the picturebox, click the thunder icon and find the event

 

Step 3

When clicked, the button would execute a script, something like this 

WeAreDevs_API.ExploitAPI WRD = new WeAreDevs_API.ExploitAPI();

string script = ""; // script 
WRD.SendLuaScript(script); // from the variable 

Now you would need to escape the script you have, for example you want to put in

print("Hi")

But if you just paste it into the variable script, visual studio will say its not escaped or something, you can put in the script in this website and convert it into escaped string

 

The escaped string for it would look like

print(\"Hi\")

Putting it in,

WeAreDevs_API.ExploitAPI WRD = new WeAreDevs_API.ExploitAPI();

string script = "print(\"Hi\")"; // script 
WRD.SendLuaScript(script); // from the variable 

This code will print Hi in the console when you press F9 in Roblox

 

If I was too confusing or you need help, feel free to dm me on Discord, my username is Main_EX#3595

 

Hope this somehow helps 

  • 0

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )