Last updated 10 months ago
Compiler expected a known type of the parameter in the function signature, but provided name is not known.
E.g. in
function foo(value: something)
something might not be a valid type. Compiler expects int, float, string or a name (e.g. Player).
something
int
float
string
Player
use a valid type name. Check documentation for more information.