Hey! So basically, I have a folder of parts. A function loops through that folder, getting all the children and then assigning the .Touched
event to it. However, the parts (certain ones) get cloned and parented into workspace (from ReplicatedStorage) at some point. There, it doesn’t work anymore. How can I connect the Touched event to even parts, that are a cloned version of the original ones?
Just after you clone it, connect a touch function there.
local clonedPart = part:Clone()
clonedPart.Parent = workspace
clonedPart.Touched:Connect(touchFunctionHere)
If this doesn’t help, I might need to see some code to help further.
1 Like
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.