FroDev1002
(FroDev)
#1
I got this error:
OnClientInvoke is a callback member of RemoteFunction; you can only set the callback value, get is not available
Not sure what it means nor how to fix it, this is the code where the error triggers:
event2.OnClientInvoke:Connect(function(char:Model,anim:Animation,Mark)
Thanks!
R_obotz
(Robotz)
#2
Remote functions are not handled in the same way as remote events. Try this format
event2.OnClientInvoke = function(char, anim, Mark)
--stuff here
return (value or nil)
end
system
(system)
Closed
#3
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.