How to see the % of a part touching another part

Hello developers,

I am working on my game, and i need to save every object in a chunk.
I thought about doing the .touched trigger event (the chunk is big invisible block, that you can’t collide with), but if the part touches 2 chunks, both would (prob) save the item, and it will be duped. It also might fall off the world. Does anyone know how i can do this? If you need more info just ask me.

Put all the items you save into a table. Before saving any item, check if that item is already in the table. If it is, don’t save it a second time.

Why didn’t i have though of that, it will prob fix both problems!

1 Like