Remote Events vs PropertyChangedSignal

I’m currently programming a Custom Tool Equiping System for a project and I’ve got to the part where once I set the part to equipped, the client has to clone and display the Tool UI. But ive been thinking what the best way of doing it with PropertyChangedSignal Event or using Remote Events. I am leaning towards Remote Events but I just want to know others opinions on it…

The remote event might take some time if you have a bad internet while the propertyChangedSignal will be instantaneous as it’s directly on the client side

I really don’t think that’s true. The only way a property change can propagate to the server is over the network, just like sending a RemoteEvent. If it’s a change that doesn’t need to be replicated, just don’t send a RemoteEvent.

1 Like