flamework Could not resolve component 'qB' while constructing 'Al' fix?

only happens some of the times and im just curious what could be the reason
1 Reply
giggleblunts
gigglebluntsOP2mo ago
@Component({
tag: CHARACTER_TAG,
})
export class BaseCharacterClient extends BaseComponent<{}, IBaseCharacter> implements OnStart {
onStart(): void {
this.instance.WaitForChild("HumanoidRootPart");
this.instance.AddTag(CHARACTER_TAG_CLIENT);
}
loadAnimation(animation: Animation) {
const hum = this.instance.Humanoid;
return hum.Animator.LoadAnimation(animation);
}
getAnimator() {
return this.instance.Humanoid.Animator;
}
}
@Component({
tag: CHARACTER_TAG,
})
export class BaseCharacterClient extends BaseComponent<{}, IBaseCharacter> implements OnStart {
onStart(): void {
this.instance.WaitForChild("HumanoidRootPart");
this.instance.AddTag(CHARACTER_TAG_CLIENT);
}
loadAnimation(animation: Animation) {
const hum = this.instance.Humanoid;
return hum.Animator.LoadAnimation(animation);
}
getAnimator() {
return this.instance.Humanoid.Animator;
}
}
qB is just this defining a custom instanceguard solved it

Did you find this page helpful?