Answered by
5 years ago Edited 5 years ago
You can put a ClickDetector in the part. Change the CursorIcon property in the ClickDetector invisible/transparent. Then put a script in the ClickDetector. Use the MouseHoverEnter:() function in your script. Then put a SelectionBox in your part, and make the transparency of the SelectionBox 1. Then, in the script make it so once MouseHoverEnter:(), SelectionBox.Transparency = 0. Lastly, in the script make it so once MouseHoverLeave:(), SelectionBox.Transparency =1.
Your script should look like this:
1 | script.Parent.ClickDetector.MouseHoverEnter:Connect( function () |
2 | script.Parent.SelectionBox.Transparency = 0 |
5 | script.Parent.ClickDetector.MouseHoverLeave:Connect( function () |
6 | script.Parent.SelectionBox.Transparency = 1 |