Need help again :P

Hey guys IDK why it is doing this but… yes its a newbie question… What does it mean when " ‘BlaBla’ is not a member of ‘String’." :face_with_spiral_eyes:

please post the full error message

“Assets/Scripts/Goblin/Health ControlG.js(15,20): BCE0019: ‘die’ is not a member of ‘String’.”
“Assets/Scripts/Goblin/Turret Colision1.js(13,19): BCE0019: ‘HIT’ is not a member of ‘String’.”

It means you have something in your code like:

var myString : string = "asdf";
myString.die = "zxcv";
myString.HIT();

Essentially, you’re trying to access “die” and “HIT” on a string variable, which makes no sense.

Ring,

What exactly are you trying to do?
We might be able to help explain how to do it, if we knew.

-Chilton