Hello,
As I said in the title too,I know how to save and load parts but i can't load/save their positions and rotations.Any help would be awesome
You have to save their positions and rotations into your datastorage
01 | local data = { } |
02 |
03 | local part = workspace.Part 1 |
04 | local partData = { |
05 | [ 'Orientation' ] = part.Orientation; |
06 | [ 'Position' ] = part.Position |
07 | [ 'BrickColor' ] = part.BrickColor |
08 | } |
09 |
10 | table.insert(data, partData) |
I'm assuming you already kinda know what you're doing though. otherwise start from something easier