Hello, how would I go about placing a locker and spawning items in it I am at the part of using OnConstructionPlace and getting the lockers prefabID
object OnConstructionPlace(BaseEntity entity, Construction component, Construction.Target constructionTarget, BasePlayer player) {
if (component.prefabID == 177343599) {
// Spawn stuff in locker
PrintToChat("Placed Locker!");
}
return null;
}I am just stuck on the part of putting items in it.