roblox-tsr
roblox-ts13mo ago
40 replies
Ohirume

help with flamework components

here is my code

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"));
    }
}


issue is that nothing prints when i run the game when there should be a print
image.png
Was this page helpful?