Hey all, I’ve been working on a Combat System for my game, and am stuck on which route I should take. Right now, I’m using a BindableFunction called GetStatus to fetch the character’s status, and it works fine for now. However, I’m concerned if this would cause any negative long term effects.
The Network module is just a pathway for me to use Remotes, Bindables, etc. The GetStatus bindable is called every time I try to dash, which is whenever I press Q.
I think you have to ask yourself: “should these two scripts be coupled?”.
By that I mean are the scripts closely related and would it make sense for them to be linked?
(Maybe your dealing with two completely separate systems.)