#Sensitive remote events

1 messages · Page 1 of 1 (latest)

bitter pier
#

What and how do I make remote events not sensitive to exploiting,because my game got raided today and they gave themselves owner.

rustic arrow
#

Like for example, lets say you have code so when you press a button you gain admin commands

#

In the server

#

you need to have a list of all the players with admin command previliges

#

and store them in a list

#

So basically,

  • Button is clicked
    -Fire remote
  • Check player is a part of the white list of player with the ability for admin
  • if not just ignore the request or ban the player, kick, you decide
#

Just make sure you do your sanity checks on the server

bitter pier
#

Mhm

#

Alright thanks!