[CreateAssetMenu] problem

Hey guys,
I don’t know if I should post it here but I found a problem and I don’t know what to do with it.
Here is the code:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

[CreateAssetMenu(menuName = "theFrefly/newAnswer")]

public class Answer : ScriptableObjects
{
    [TextArea]
    public string description;
    public string answerName;
}

The problem:
I just don’t see the ,theFrefly" selection in Create tab.
Anyone know what to do with this?

Also just tried this:

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

[CreateAssetMenu(fileName = "Answer", menuName = "Answers/NewAnswer", order = 100)]
public class Answer : ScriptableObject

{
    [TextArea]
    private string description;
    private string answerName;

}

Still the same problem.

Try either:

[CreateAssetMenu]
public class Answer : ScriptableObjects

or

[MenuItem("Assets/Create/Answer")]
public class Answer : ScriptableObjects

Thank you, thank you, thank you!! You are amazing!
Have a nice day!

Night actually. :wink:

And have a good… time!