#include <windows.h>
float teleport[3]={1000,100,100};
void Input(){
while(true){
if(GetAsyncKeyState(0x60))
MessageBox(0,"Example","Example",0);
}
}
BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call,
LPVOID lpRe$
{
if(ul_reason_for_call = DLL_PROCESS_ATTACH)
{
DisableThreadLibraryCalls(hModule); //Thanks Microsoft =D
CreateThread(NULL,0,(unsigned long (__stdcall *)(void
*))Keys,NULL,0,NULL);
MessageBox(0,"DLL Injected","DLL Injected",0);
return TRUE;
}
return TRUE;
}

