all is did was a simple if statement, it worked on both left and right .
if (IsKeyDown(KEY_R)){
rotation = {0};
}
it also work with isMouse
if (IsMouseButtonDown(MOUSE_LEFT_BUTTON)){
rotation = {0.f}; }
is this solution any good?