Vérifiez si l'enfant est touché Roblox
lcoal Model = workspace.Part
for _,v in pairs(Model:GetChildren()) do
if v:IsA("BasePart") then
v.Touched:Connect(onChildTouched)
end
end
ClasWasHere