Temat: Mam problem z napisaniem pluginu POMOCY

Cześć. Mam pecha ponieważ każdy skrypt który u innych działa u mnie ma błąd. Możecie dać skrypt na poruszanie się kuli? Oraz napiszcie co tu jest złe:

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

public class NewBehaviourScript : MonoBehaviour
{
// Start is called before the first frame update
void Start()
{

}

// Update is called once per frame
void Update()
{
if(Input.GetKey(KeyCode.W))
{
Debug("do gory");
}
}

private void Debug(string v)
{
if (string.IsNullOrWhiteSpace(v))
{
throw new ArgumentException("message", nameof(v));
}
}
}