For making the co-routinecoroutine wait for a few seconds before executing isCoyote = falseisCoyote = false, you will need to use new WaitForSecondsnew WaitForSeconds().
What this function will dodoes is it waits for that delay and then execute the isCoyote = falseexecutes isCoyote = false.
Try this code:
private IEnumerator ApplyCoyote()
{
isCoyote = true;
yield return new WaitForSeconds(coyoteDelay);
isCoyote = false;
}