Can exploiters use remote functions?

I’m scripting a game that will use either remote events or functions to communicate from client to server. Are exploiters able to Invoke remote functions or are they only able to fire Remote Events?

4 Likes

they can both invoke remote functions and fire remote event from clint side.

1 Like

They can use both remote events and remote functions but you can create an anti exploit to prevent the code from running in the events to prevent exploiters.

1 Like

anything that can be fired from the client side they can use. This is why it is important to protect your remotes with auto generated keys in order to use the event and for an anti cheat if they get it wrong kick/ban the player

1 Like

They can fire any event. Make sure to verify that every parameter sent through an event is the typeof you are expecting. Especially make sure if you are expecting an Instance, that they aren’t sending a table that is structured to look like an Instance, as that could be a security vulnerability.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.