error cs1525, roll a ball game

using UnityEngine;
using System.Collections;

public class Playercontroler2 : MonoBehaviour {
public float speed;

private Rigidbody rb;

void Start()
{
    rb = GetComponent<Rigidbody>();
}

void FixedUpdate()
{
    float moveHorizontal = Input.GetAxis("Horizontal");
    float moveVertical = Input.GetAxis("Vertical");

Vector3 movement = new Vector3 (moveHorizontal, 0.0f, moveVertical);

rb.AddForce(movement * speed);
}
void OnTriggerEnter(Collider other)
{
    if (other.gameObject.CompareTag ("Pick Up"))
    {
        other.gameObject.SetActive(false)
    }
}

Hi @Darkwolf1

 other.gameObject.SetActive(false)

The above line have no semi-colon ; Inside the OnTriggerEnter function… cs1525 error occurs mainly of these syntax errors or Invalid character…

Please check that and verify…