local MB_ICONERROR = 0x00000010 local MB_ICONINFORMATION = 0x00000040 local MB_OK = 0x00000000 --idk this need or nah if setfpscap then setfpscap(0) local flags = bit32.bor(MB_ICONINFORMATION, MB_OK) messagebox("The FPS Cap has been unlimited.", "Success!", flags) else local flags = bit32.bor(MB_ICONERROR, MB_OK) messagebox("The setfpscap function was not found or is undefined.", "Error: Function Not Found", flags) end