How can i make a part that if u touch other part disappear
This script is about where if you touch Part1, part2 will "disappear" (I'm assuming you mean go transparent).
1 | local part 2 = game.Workspace.part 2 --Replace Part2 with the name of the part that you want to disappear |
2 |
3 | function onTouched() |
4 | part 2. Transparency = 1 --Or do part2:Destroy() if you want it completely removed |
5 | end |
6 |
7 | script.Parent.Touched:Connect(onTouched) |
Like I said, you need to be more specific and try to include code snippets. This wont work for models, otherwise you'd have to include every single piece in the script.
Hope this helps!
The above script is if you want to completely remove it
1 | local PART 2 NAME = game.Workspace.PART 2 NAME --Replace Part2 with the name of part2 |
2 |
3 | function onTouched() |
4 | PART 2 NAME:Destroy() |
5 | end |
6 |
7 | script.Parent.Touched:Connect(onTouched) |
The below script is if you want to make it invisible
1 | local PART 2 NAME = game.Workspace.PART 2 NAME --Replace Part2 with the name of part2 |
2 |
3 | function onTouched() |
4 | PART 2 NAME.transparency = 1 |
5 | end |
6 |
7 | script.Parent.Touched:Connect(onTouched) |
Please try to add your coding attempt(s) so I can help you more next time.
1 | local part = game.Workspace.Part -- Get the part that you want |
2 |
3 | part.Touched:Connect( function () -- if someone touched the part then connect to this function |
4 | -- Everything here inside this function is going to run after the part is touched |
5 |
6 | part.Transparency = 1 -- the part will disappear, if you want to remove it completely then write part.Destroy() |
7 | end ) |
Hope this helped
Closed as Not Constructive by hiimgoodpack and User#5423
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?