Originally posted by Phobick
So yea, I just downloaded T6's YT bot source and i have know idea how to use it :dumb: I tried Google with no success

kay: So if someone can help me with this over TV or something ill give you some vbux
P.s. BTW its a YT bot source for a account creator.
Unlike the others who've offered you advice, let me put this in "noob terms".
So, you downloaded the source code. You want to turn the source code into an executable file (something that you can run).
The first step is to determine what language it was programmed in. You could determine this either by looking at the code or by looking at the file extension (for example *.cpp would indicate that it was written in C++). You can just Google the extensions.
After identifying what language the code is written in, you have to either use a compiler to turn it into an executable, or use an interpreter to directly execute it. If it was programmed in C++, you'd know that's a compiled language, and you'd need a C++ compiler. If it was written in Python, you'd know that's an interpreted language, and you'd need a Python interpreter.
If its compiled, you could use the compiler to "compile" it into an executable. If its interpreted, you could use the interpreter to directly run the program.
If you either post the source, or just come back and tell me what language it was written in, I can help you further by giving you additional instructions on compiling/interpreting the code, and I could find you an appropriate compiler/interpreter.