Is there any way to know if a BindableFunction has a function assigned to it? The “OnInvoke” property cannot be read, only set, meaning I can’t just use that to tell if there’s a function assigned. I need to have a way to know if a function is assigned to prevent my script from infinite yielding because it’s waiting for a result that it’s never going to get
No but if you keep your logic organized it shouldn’t be too hard to check using other ways
Yeah, true. I know I can use other ways, but I was just wondering is there was a certain intended way to do this other than trying to get the OnInvoke property. Thanks though