Help with sanity checks

What type of sanity checks on the server side could I do for a standard placement system?

1 Like

There isn’t a standard placement system, but these are some of the checks that I use:

If you have a grid then make sure it’s locked to it.
If you have a distance limit then make sure the player isn’t too far away from the placement.
If you don’t want overlapping blocks then make sure to query collisions to make sure it can’t be spawned inside an already existing block.

1 Like