How to teleport one game object to another with offset?

I Want to teleport a game object called “Apple” to the player characters head at all times, So i need to teleport the apple to the player with a y offset of -1.17395. Can anyone comment a script that does this?

Maybe you can do that:

 transform.position = new Vector3 (Player.transform.position.x, Player.transform.position.y - 1.17395f, Player.transform.position.z);

It will make the apple go to the player with an Y offset of -1,17395.