Instantiate not visible

For some reason Instantiate method is not visible in cs script any ideas?

Thanks in advance.

Like CHPedersen wrote, you need to inherit from Monobehavior to get access to Instantiate method. Never the less if you need the method in some other class which does not inherit Monobehavior you can call with from Monobehavior.Instantiate() static method.