I seen it in Lua Model Maker's admin just I dont know how to use it. XD Can someone explane to me what a Remote Function is? Or at least how to use it because I do know one thing about "Remote Events" I use them at the moment.
game:GetService('ServerScriptStorage').RemoteEvent:FireClient()
So anyways can someone please explane to me what a "Remote Function" is?
A RemoteFunction
is similar to a RemoteEvent
. The only difference is that the RemoteFunction
is a callback, and the RemoteEvent
is connected to an event. Use a RemoteFunction
when you want to return something.
Q: What makes RemoteFunctions/RemoteEvents different from Bindable Functions/Bindable Events? What makes the RemoteFunction and the RemoteEvent unique is that is crosses the client-server communication border (that's why they are used in games using Filtering). Meaning a client can communicate with the server.