help with flamework components
here is my code
issue is that nothing prints when i run the game when there should be a print
issue is that nothing prints when i run the game when there should be a print

import { BaseComponent, Component } from "@flamework/components";
import { OnStart } from "@flamework/core";
@Component({
tag: "Station",
})
export class Station extends BaseComponent implements OnStart {
constructor() {
super();
}
onStart() {
print(this.instance.GetAttribute("ID"));
}
}