Hello @Wulf, in recent updates, I noticed an error, if a player forbids construction, and the player will install a cabinet, this will not allow to do but the building will be created (zone).
Error in CanBuild
Merged postI solved the problem by removing the building zone, but this does not solve the general problem.
if (prefab.fullName.Contains("cupboard.tool"))
{
BuildingPrivlidge privilege = target.entity.GetBuildingPrivilege(target.entity.WorldSpaceBounds());
if (privilege!= null) privilege.Kill();
}
