creampuff1
Member
- Joined
- Aug 22, 2023
- Messages
- 6
- Programming Experience
- Beginner
I keep getting this error and I have no idea how to fix it
here is my code if that helps
here is my code if that helps
C#:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PipeMovement : MonoBehaviour
{
public float moveSpeed == 5;
// Start is called before the first frame update
void Start()
{
}
// Update is called once per frame
void Update()
{
transform.position = transform.position + (Vector3.Left * moveSpeed);
}
}
Last edited by a moderator: