I am using the net library for my addon and I have a net.Send serversided and a net.Receive clientsided.
If I do something like this :
net.Receive("Oof", function()
print("Oof")
end)
How do I recall that function later in the code?
Such as :
net.Receive("Oof", function()
print("Oof")
end)
Oof() -- ^^ Calling the function from above.