Can remote events be reused

Can a remote event be reused? So if I have two sets of scripts that require a remote event I can just use one remote event or do I have to add two?

1 Like

Yes, every OnServerEvent event will run on invoke.

If scripting correctly, you can reuse RemoteEvent for multiple functions.

For example, if you’re making a function that gives a gear to a player, but there are different gears involved, you won’t need to make a RemoteEvent for multiple gears. You’ll only need to make one called “GiveGear”

It depends on the scenario on whether you need multiple RemoteEvents or not though.

1 Like

Instead of having multiple remotes for lets say - buying items from a shop,you could use 1 remote function to check : 1) Item’s name. 2) Item’s price. etc…