Hi I am asking: How to implement your own custom events/ RBXScriptSignal?
What I mean is if I have the following MoveToFinished
event:
1 | Humanoid.MoveToFinished:Connect(myFunc) |
and I want to implement my own event which I will call idle
1 | Humanoid.idle:Connect(myFunc) |
How does one implement idle as event to Humanoid?