Profile Picture

lolollokug (NoRole)

Reputation: 2 [rate]

Joined: Feb, 2020

Last online:

want something? add me on disccord !Spl||HasH!#7562

Bio

xd

Badges

badge

Etc

Send Message

Threads List
Possible Alts

Activity Feed

Commented to thread : [COMING SOON] HH2


AGRREEDDD AGRREEDDD AGRREEDDD

Created a new thread : [COMING SOON] HH2


Hype In the server now for hh2 to drop today its better than any other exploit ok ok ok LEAKS ON THE DISCORD SERVER

https://discord.gg/bhasVDNa
HYPE!!!!

Commented to thread : Scriptware


i am saying that you are comparing sirhurt with script ware without having sirhurt and saying script ware is better??? maybe script ware is better for you sirhurt is better for others.

Replied to thread : How TF do you make yourself these immortal things


this is an fe script like he can change things that everyone can see its bcs fe disabled (this is not explained well very much)

Replied to thread : Scriptware


This person is always chasing Sirhurt badly and cant proof any of his points, and he doesn't even have Sirhurt and still criticize it like come on stop this sh

Replied to thread : sirhurt android is so bad


sirhurt android is actually good most of the scripts I tried worked well for me

 

note u dum if u want it to work use android compatible scripts

Replied to thread : Could someone please explain to me what I could do with the DEX EXPLORER


@jugugalu, you prob switched the value in the leaderboard but in the server, you only have 90 coins you gotta find a remote to change the number of coins use remote spy and try to find a remote that changes it.

Replied to thread : print exploit


@DeepPain,its all mine except the console function and the print, i just started learning c++ and i will comment it  

Created a new thread : print exploit


it prints to the roblox console in-game

 

#include <iostream>
#include <Windows.h>
#include <thread>
#include <string>

#define ASLR(x)(x - 0x400000)

using namespace std;
void console(const char* title);// i defined the function here to make the code cleaner 

void main() {
    console("Prrr");// makes the console name "Prrr"

    typedef int(__cdecl* printf)(int, const char*, ...);
    printf print = reinterpret_cast<printf>(reinterpret_cast<std::uintptr_t>(GetModuleHandle(nullptr)) + ASLR(0x10570C0));

    string typ;
    string pr;
    bool t = true;

    cout << "*************************START**********************\n";
    cout << "Types are, normal = 0, info = 1, warn = 2, error = 3\n";

    do { // a do loop
        cout << "Text: ";
        getline(cin, pr);// get the input

        const char* v = pr.c_str(); // make a const char variable to store the input and read it using pr.c_str()
        bool valid_input = false;

        while (!valid_input) {// a while loop that checks if the entered input is not a number between 0-3
            cout << "Type: ";
            getline(cin, typ);
            if (typ[0] == '0') {
                print(0, v);
                valid_input = true;//if its valid it will stop the loop but the loop will run again because of the do loop
            }
            else if (typ[0] == '1') {
                print(1, v);
                valid_input = true;
            }
            else if (typ[0] == '2') {
                print(2, v);
                valid_input = true;
            }
            else if (typ[0] == '3') {
                print(3, v);
                valid_input = true;
            }
            else {
                cout << "Please Enter A Valid Type Number\n";
                Sleep(1000);
            }
        }

    } while (t);//if the bool t is = true it will continue to run

}



void console(const char* title) {
    DWORD old;
    VirtualProtect(reinterpret_cast <PVOID> (&FreeConsole), 1, PAGE_EXECUTE_READWRITE, &old);
    *reinterpret_cast <std::uint8_t*> (&FreeConsole) = 0xC3;
    VirtualProtect(&FreeConsole, 1, old, &old);
    AllocConsole();
    SetConsoleTitleA(title);
    FILE* file_stream;
    freopen_s(&file_stream, "CONOUT$", "w", stdout);
    freopen_s(&file_stream, "CONOUT$", "w", stderr);
    freopen_s(&file_stream, "CONIN$", "r", stdin);
}

BOOL __stdcall DllMain(HINSTANCE Dll, DWORD Reason, LPVOID Reserved) {
    if (Reason == DLL_PROCESS_ATTACH) {
        CreateThread(0, 0, (LPTHREAD_START_ROUTINE)main, 0, 0, 0);
    }
    return TRUE;
}

Created a new thread : rock paper scissor


rock paper scissor

rock paper scissor

rock paper scissor

 

#include <iostream>
#include <ctime>


using namespace std;

char get_user_input();
char get_computer_choice();
void choice(char l);
void winner(char plr, char comp);

int main() {
	char plr;
	char comp;
	bool x = true;
	
	do {
		plr = get_user_input();
		printf("Your Choice Is: ", '\n');
		choice(plr);

		comp = get_computer_choice();
		printf("Computer Choice Is: ", '\n');
		choice(comp);

		winner(plr, comp);
	} while (x == true);
}

char get_user_input() {
	char player;
	cout << "Rock - Paper - Scissor\n";
	do {
		cout << "'r' for rock, 's' for scissor, 'p' for paper: ";
		cin >> player;
	} while (player != 'r' && player != 's' && player != 'p');
	return player;
}

char get_computer_choice() {
	int computer = (rand() % 3) + 1;

	switch (computer)
	{
	case 1:
		return 'r';

	case 2:
		return 's';

	case 3:
		return 'p';

	}
}

void choice(char l) {
	
	switch (l)
	{
	case 'r':
		cout << "Rock\n";
		break;
	case 's':
		cout << "Scissor\n";
		break;
	case 'p':
		cout << "Paper\n";
		break;
	}

}

void winner(char plr, char comp) {
	//i know i could have used switch but i used if statments so ok
	if (plr == 's' && comp == 'r') {
		cout << "Computer Won\n";
	}
	else if (plr == 'r' && comp == 's')
	{
		cout << "You Won\n";
	}
	else if (plr == 'p' && comp == 's')
	{
		cout << "Computer Won\n";
	}
	else if (plr == 's' && comp == 'p')
	{
		cout << "You Won\n";
	}
	else if (plr == 'p' && comp == 'r')
	{
		cout << "You Won\n";
	}
	else if (plr == 'r' && comp == 'p')
	{
		cout << "You Won\n";
	}
	else if (plr == 'p' && comp == 'p')
	{
		cout << "Tie\n";
	}
	else if (plr == 'r' && comp == 'r')
	{
		cout << "Tie\n";
	}
	else if (plr == 's' && comp == 's')
	{
		cout << "Tie\n";
	}
}

Replied to thread : [HELP] How to find GetState Address (NOT GETSCHEDULER)


search for the string 'debug' it must be all lower case with no extra words / letters

 

 

and then click

aDebug_0 and press x then okay

 

then go up a little bit till you see

 

the sub on top double clik it and decompile

 

it should be this

 

idk

Replied to thread : jjsploit dont work


you should just wait a few hours and open jj again and see if it got fixed

Replied to thread : [Help] Key system


bro how you making a hub and dont know how to make a key system