Callback for remote events

The title basically summarizes my problem. Do remote events have callbacks, and if they do, how do you use them.

The reason why I would like to know this is because I am making a coin system. Its runned by 2 scripts, a local script which localizes the coins and a server script which adds the amount a coin is worth.

I have looked this up on the forum and couldn’t find it.

Have a good day!

No, they do not have callbacks. However, you can use RemoteFunction which can be used to return something to the client.

1 Like

Would a remote event fired from the server to the client be alright to?

It is fine to fire a RemoteEvent from the server to the client. But it is not suggestable to fire a RemoteFunction from the server to the client.

1 Like