#cycling through a model
6 messages · Page 1 of 1 (latest)
6 messages · Page 1 of 1 (latest)
part.Touched:Connect(function()
for _,v in model:GetDescendants() do
if v:IsA("BasePart") then
v.Transparency = 0
v.CanCollide = true
end
end
end)
Do i put the script inside the part?