Profile Picture

Haruka (STD Testing Center)

Reputation: 5 [rate]

Joined: Feb, 2023

Last online:

https://media.discordapp.net/attachments/979069297374671018/1078367228593971362/VelvetSiggy.png

 

 

Bio

C# C++ and UI/UX

Badges

badge

Etc

Send Message

Threads List
Possible Alts

Activity Feed

Commented to thread : WeAreDev's official statement for Hyperion?


uh you took what fishy said and twisted it around tons fold

Replied to thread : Time To Piss WRD Off


unironically i think this looks better than 70% of uis that release on this site

 

Replied to thread : hey alexa! whats the best way to make auto attach


@atariXD, that is true but its important for handling errors and preventing crashes

  

and if you really dont want error handling you could just remove it 

rocess[] processes = Process.GetProcessesByName("RobloxPlayerBeta");

        if (processes.Length > 0)
        {
            Console.WriteLine("Roblox is running.");
        }
        else
        {
            Console.WriteLine("Roblox is not running.");
        }

 

 

this would work aswell

Process[] processes = Process.GetProcessesByName("RobloxPlayerBeta");

        if (processes == null || processes.Length == 0)
        {
            Console.WriteLine("Roblox is not running.");
        }
        else
        {
            Console.WriteLine("Roblox is running.");
        }
    }

 

Replied to thread : hey alexa! whats the best way to make auto attach


not the best but it works

 

 try
        {
            Process[] processes = Process.GetProcessesByName("RobloxPlayerBeta");

            if (processes.Length > 0)
            {
                Console.WriteLine("You can inject (roblox is open )");
            }
            else
            {
                Console.WriteLine("you cant inject ( roblox is closed) ");
            }
        }
        catch (Exception ex)
        {
            Console.WriteLine("An error occurred while trying to check for Roblox: " + ex.Message);
        }
    }

 

 

 

 

Replied to thread : Sneak Peak Upcoming exploit UTOPIA !


pretty mid 

 

//charss

 

 

Replied to thread : [rate] Aquilox UI


@z_Kenneth, checkbox styles are not that hard to make add a little corner radius throw in a checkbox and some nice colors lol

 

Replied to thread : [rate] Aquilox UI


pretty generic ive seen alot of uis use that style and colors are mid. not you're checkbox style either

 

Replied to thread : DISCORD | Cheap Discord Server Boosts | 5$ For 14 Boosts


zelqboosts is cheaper and more reliable

 

Replied to thread : NoMoreLife (Selling my property | Toxic)


tbh if it was made for HIM i dont see a big deal with him selling it or not as it was given to him, its similar to saying you cant sell a gft you were given if it didnt fit you or you disliked it

 

Replied to thread : My game Keeps getting fatal error and an error code (Im using Oxygen U)


@JJSploit_On_Top, did you read what i said


the example i gave was an example of a custom func being used wrong and crashing the game


https://media.discordapp.net/attachments/981336442129223711/1085309544034467952/image.png

while true do end

 doesnt crash you're game it just inf loop yielding scheduler forever not a crash though

 

Replied to thread : My game Keeps getting fatal error and an error code (Im using Oxygen U)


@JJSploit_On_Top, exploit tried to write to a readonly page, cause the memory of the pointer pointed to another page (it could also be a diff protected page it doesnt necessarily mean readonly)

 

int* abc = SOME_PROTECTED_PAGE;

*abc = 25;
// violation

 iI bet one of their custom funcs is bad 

func(nil, nil, nil)

this will crash an executor without argument checking (on a custom func)

 

 

Replied to thread : what is the worst script executor ?


@crazy_cat, i agree with this.

 

Replied to thread : Script for Longest Answer Wins?


you're basically talking about an AI or a calculator