Why can't I return a function from a RemoteFunction?
Asked by
gskw 1046
10 years ago
In a script inside a RemoteFunction, which is inside workspace, I have the following:
1 | function script.Parent.OnServerInvoke(_) |
Then, inside a LocalScript, which is inside the StarterGui, I have the following:
1 | local function loadstring (src) |
2 | return workspace.RemoteFunction:InvokeServer(src); |
This causes the following error:
1 | 12 : 35 : 23.263 - Players.Player 1. PlayerGui.LocalScript: 4 : attempt to call a nil value |
2 | 12 : 35 : 23.263 - Stack Begin |
3 | 12 : 35 : 23.263 - Script 'Players.Player1.PlayerGui.LocalScript' , Line 4 |
4 | 12 : 35 : 23.263 - Stack End |
What's wrong with this application?