I have this error and i try to remove it but i can’t
Library\PackageCache\com.unity.services.core@1.11.0\Runtime\Core.Internal\Serialization\NewtonsoftSerializer.cs(25,30): error CS1501: No overload for method ‘Serialize’ takes 3 arguments
Well the error is telling you that your Newtonsoft Serializer’s Serialize() method doesnt take 3 arguments. Make sure to check the declaration of the Serialize method and then check your calling of that method.
Also note that this is not how you ask questions here. First the title of your question should be the actual problem. Not something like “Help me please” and please give a list of things you have already tried. Did you try searching the internet for this problem. What other things you tried. And make sure to give the code snippet of where the error is occurring. You can’t expect us to solve your problem without telling us the problem clearly.