How to make objects in my placement system not stackable?

  1. What do you want to achieve? Keep it simple and clear!
    I want to make it so that my placement system’s object cannot be stackable (they can not be placed on on top of another)

  2. What is the issue? Include screenshots / videos if possible!
    I don’t know how to do it.

  3. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    I have tried YT and Devforum.

Here is a video from zblox of how i want it to look like (skip to 9:37 to see it):

1 Like

Check for the Y position of the Part’s placement. If it’s higher than a certain value then don’t allow the part to be placed.

If you have multiple levels you want to be able to build on then maybe put your placed Parts in a folder then fire a Raycast below the placement Part and check to see if the item below is one of the Parts in the folder. If it is then don’t allow it to be placed.

1 Like