Hi. I am writing a script which requires the replication of BaseParts when prompted by user input. If I was replicating Models, I would definitely use :Clone() and store the model in ServerStorage, but since I'm just replicating BaseParts, I'm not sure if I should put the desired BasePart in ServerStorage and clone it, or instantiate a new BasePart in the script using Instance.new(). Thanks in advance!
Well are you going to Delete the part at all? and is it going to be cloned alot of times?
I mean if i was you if i was cloning the part alot i would put it in server storage and :clone() it so i don't have to set alot of properties
but
if i was using it a few times and it was something important i'd Instance.new()
But that's just my thoughts