1 | local tool = script.Parent |
2 |
3 | tool.Equipped:Connect( function () |
4 | for i, v in pairs (tool:GetDescendants()) do |
5 | if v:IsA( "BasePart" ) or v:IsA( "UnionOperation" ) then |
6 | v.Transparency = 1 |
7 | end |
8 | end |
9 | end ) |
Ure welcome