Your tree should look like this.
-KinematicBody2d
--CollisionShape2d
--Sprite
When you want to flip your sprite do.
$sprite.scale.x = -1
If your CollisionShape2d is asymmetric then do this instead.
-KinematicBody2d
--CollisionShape2d
---Sprite
$CollisionShape2d.scale.x = -1