Posted
I accidentally asked on how to make a debug lib when i meant to say Output like sentineal and other executors.So i can see if there was any errors or if it never injected.
Love And Thanks
SpaceSpiffer
https://media.discordapp.net/attachments/1013939973671624917/1027279180192292944/unknown.png
https://media.discordapp.net/attachments/1010670716062007347/1108945330847883274/image.png
Replied
if you were someone else ill go mad, but since its u, ill tell ya, just make a new richtextbox or textbox and make it readonly and multiline, and when some event happens, do:
OutPutTextBox.Text += "What text u wanna put";
^^^ btw this adds text and doesnt remove other text that has already been there, if dont want that, then do this:
OutPutTextBox.Text = "What text u wanna put";Cancel
Post
Replied
@TERIHAX im pretty sure he also ment like in the dll, so if theres errors its also in the output
Cancel
Post
back lol
Replied
@Lxnnyy nah thats not it, sentinel output is in the exploit, and for doing if its attached or not:
if (API.isAttached())
{
OutPutBox.Text += "Attached!!!!!!!!!!!!!!!!!!!!!11";
}Cancel
Post
Replied
@59690thank you
Cancel
Post
https://media.discordapp.net/attachments/1013939973671624917/1027279180192292944/unknown.png
https://media.discordapp.net/attachments/1010670716062007347/1108945330847883274/image.png
Replied
@Hiroku to detect if roblox is open I guess, I actually have a full built output system u can dm me on discord, RealChronics#2286
Process[] processes = Process.GetProcessesByName("Roblox");
foreach (Process process in processes)
{
outputbox.text = "Inject/Roblox has been found"
}
else
{
outputbox.text = "Couldnt find roblox"
{
Cancel
Post
Added
so heres some else aswell
private async void inject_click(object sender, RoutedEventArgs e)
{
API.Inject();
Editor.Text += Environment.NewLine + "Injecting...";
await Task.Delay(2800);
if (API.NamedPipeExist())
{
Editor.Text += Environment.NewLine + "You already injected the dll silly!";
}
if (API.isAPIAttached())
{
Editor.Text += Environment.NewLine + "Injection Succesful!";
}
else
{
Editor.Text += Environment.NewLine + "Injection failed! did roblox update?";
}
}
private async void execute_click(object sender, RoutedEventArgs e)
{
if (API.isAPIAttached())
{
api.execute(texteditorname.text)
Editor.Text += Environment.NewLine + "Executed!";
}
else
{
Editor.Text += Environment.NewLine + "Execution failed! did you inject?";
}
}Cancel
Post
https://media.discordapp.net/attachments/979496861738086420/981316649661632562/4353979.png
https://cdn.discordapp.com/attachments/930896685230612592/931747495514628207/unknown.png
Replied
you make a function to add text to the text box lmao, like this:
void Log(string txt, TextBox defaulttextbox = SomeDefaultTextBoxIdk) {
SomeDefaultTextBoxIdk.Text += "\n" + txt;
}Cancel
Post
hi123
Replied
@63716Thank you this was really help full
Cancel
Post
Added
@64714thank you this helped as well
Cancel
Post
Added
@65993thank you this helped too
Cancel
Post
https://media.discordapp.net/attachments/1013939973671624917/1027279180192292944/unknown.png
https://media.discordapp.net/attachments/1010670716062007347/1108945330847883274/image.png
Users viewing this thread:
( Members: 0, Guests: 0, Total: 0 )
Cancel
Post