square root?

hey i am trying to use the sqrt() class out of the .math library, but i dont know how to import the math library in unity’s java

You don’t need to. You can just use Mathf.Sqrt()
Its part of the UnityEngine namespace that you imported anyway.

Otherwise: The counterpart to C#s “using” in UnityScript is “import” for example: import System.Collections;