Should I run my anticheat script in parallel? If so how?

You’d create separate Actor instances for e.g. each Player, with the cheat detection code in a Script inside the Actor. Splitting the work up per Player seems like a good idea, because checking for Player A shouldn’t need to access or mutate the state that’s relevant to checking for Player B.

1 Like