How do you make a C# script where a public gameObject is placed in front of a player (also public gameObject) without cloning it?
What I got so far:
Instantiate (Block, Player.transform.position + (Player.transform.forward * 2), Player.transform.rotation);
I want the code above but without cloning it.
Please help.
Thanks in advance!