BindableFunction not working,

----Editing to be more simple-----


– StarterPlayerScripts
Capture

–ReplicatedStorage Location
Capture23132

Bindable functions don’t work Server → Client and vice/versa. You’ll have to use a RemoteEvent.

Also, LocalScripts don’t run inside ReplicatedStorage. You’ll want to move it elsewhere, unless you’re manually moving it.

Im doing a Bindablefunction V/A Client > Client > Client. Because I need to return a value from another local script.

I don’t think BindableFunctions go cross-client, I think it’s just either Script - Script or LocalScript - LocalScript inside one client. You’re probably going to have to communicate with the server to get the data from the other client.

– Im using a bindable function not a remote function.

Right, that’s what I meant. I still meant what I said, I just accidentally typed RemoteFunction. It’s been edited out. Sorry, I’m also replying to a thread dealing with RemoteEvents.

Found the solution to my problem, I decided to replace the BindableFunction and local script to a Module script. Now I’m getting the Boolean value that I needed to return.