Überprüfen Sie, ob das Kind Roblox berührt ist
lcoal Model = workspace.Part
for _,v in pairs(Model:GetChildren()) do
if v:IsA("BasePart") then
v.Touched:Connect(onChildTouched)
end
end
ClasWasHere