"OnServerInvoke is a callback member of RemoteFunction" error? [Question solved]
Asked by
6 years ago Edited 6 years ago
I'm making a custom chat system that uses RemoteFunctions to give a chat handler script the required values to send a chatted message, through a custom GUI, and a RemoteEvent to send the message to all players in the game. I started building it yesterday, and overall it looks good.
But I get an error while connecting an event listener to the remote function saying OnServerInvoke is a callback member of RemoteFunction; you can only set the callback value, get is not available.
I'll provide full code snippets of everything used for this. A good and reasonable answer would be perfect and well appreciated. Thanks.
P.S. I know that my chat script isn't fully complete. I'm just showing you how I'm trying to send arguements to a RemoteFunction.
Local chat script (ScreenGui):
01 | local uis = game:GetService( "UserInputService" ) |
02 | local plr = game.Players.LocalPlayer |
03 | local chatEvent = game.Workspace.SendMessage |
04 | local sendChatInfo = game.Workspace.ChatInvoker |
06 | local chatserv = game:GetService( "Chat" ) |
07 | uis.InputBegan:Connect( function (input) |
08 | if input.InputType = = Enum.UserInputType.Keyboard then |
09 | if input.KeyCode = = Enum.KeyCode.Slash then |
12 | script.Parent:CaptureFocus() |
14 | else if input.KeyCode = = Enum.KeyCode.Return then |
17 | local msg = script.Parent.Text |
18 | sendChatInfo:InvokeServer(plr, msg) |
19 | script.Parent:ReleaseFocus() |
Custom Chat Handler (global script):
1 | local SendMessageEvent = game.Workspace.SendMessage |
2 | local ChatInvoker = game.Workspace.ChatInvoker |
3 | ChatInvoker.OnServerInvoke:Connect( function (plr, msg) |
4 | game.Chat:FilterStringAsync(msg) |
5 | SendMessageEvent:FireAllClients(plr, msg) |
Remember; the error is coming from the chat handler that tries to add an event listener to a RemoteFunction at line 3 of the chat handler. There's nothing else conflicting.
Any assistance to help me build an accurate custom chat system is also acceptable.