Why i get This error CS1003: Syntax error, ',' expect in my script?

i started recently and i try to run my script but i get this error Assets\Scenes\NewBehaviourScript.cs(26,67): error CS1003: Syntax error, ‘,’ expected this is my script

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

public class NewBehaviourScript : MonoBehaviour
{
    public float Velocity;

    // Start is called before the first frame update
    void Start()
    {

    }

    // Update is called once per frame
    void Update()
    {
        MovementProccessing();
    }
    void MovementProccessing()
    {
        //logica de movimineto naranja//
        float inputmovement = Input.GetAxis("Horizontal");
        Rigidbody2D Rigidbody = GetComponent<Rigidbody2D>();

        Rigidbody velocity = new Vector2(inputmovement * Velocity Rigidbody, velocity.y); }

You’ve got all kinds of typing mistakes in the script, that’s why.

You haven’t even named the script correctly!

As far as syntax errors, the last line 26 has most of the obvious mistakes, but there’s probably others as well.

Here’s how you can get started fixing your typing mistakes:

The complete error message contains everything you need to know to fix the error yourself.

The important parts of the error message are:

  • the description of the error itself (google this; you are NEVER the first one!)
  • the file it occurred in (critical!)
  • the line number and character position (the two numbers in parentheses)
  • also possibly useful is the stack trace (all the lines of text in the lower console window)

Always start with the FIRST error in the console window, as sometimes that error causes or compounds some or all of the subsequent errors. Often the error will be immediately prior to the indicated line, so make sure to check there as well.

Look in the documentation. Every API you attempt to use is probably documented somewhere. Are you using it correctly? Are you spelling it correctly? Are you structuring the syntax correctly? Look for examples!

All of that information is in the actual error message and you must pay attention to it. Learn how to identify it instantly so you don’t have to stop your progress and fiddle around with the forum.

thanks
juust have a problem i fixed the problem and i have three now but im goign to search