Infinite yields are statements (kind of like waits), that last indefinitely. An example of this can be:
Instance:WaitForChild("ThisIsNonExistentSoItWillYieldInfinitely")
or simply
wait(math.huge) -- math.huge means infinity
both are infinite yields.