Error CS1002 expected

Im new in Unity and scripting, I made this script but in appears the error CS1002 expected

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

[RequireComponent(typeof(CharacterController))]
public class Playercontroller : MonoBehaviour
{
    public float walkSpeed = 5f;

    Vector3 moveinput = Vector3.zero;
    CharacterController characterController;

    private void Awake()
    {
        characterController = GetComponent<CharacterController>();
    }

    private void Update()
    {
        Move();
    }

    private void Move()
    {
        moveinput = new Vector3(Input.GetAxisGetAxis("Horizontal"), 0f, Input.GetAxis("Vertical"));
        moveinput = transform.TransformDirection(moveinput) = walkSpeed;

        characterController.Move(moveinput = Time.deltaTime);
    }
}

When posting for help, please provide as much detail as possible, such as the actual error, and highlight the lines the error occurs.

In your case though, there is no method named GetAxisGetAxis. I am sure you meant to just use GetAxis there.

Also, the TransformDirection method returns a Vector, you cannot assign the walkSpeed float to it. I suspect you meant to multiple it by that there, the same goes for the code in the Move method call for the character controller.

If you use an ide such as Visual Studio, it should highlight those errors when you look at the code with a nice prominent squiggly line under the parts of the code causing the errors.

Thank you, I found the problem and changed the code