How do I make it where if you Hover over a box a SelectionBox shows up and go's away?
I am not going to make you the whole thing, but i'll tell you how you can detect hovering your mouse over a Part
in Workspace
:
For Parts
to detect Mouse
interaction, you need to add a ClickDetector
as their child.
Then, inside ascript
inside a ClickDetector
inside said Part
:
script.Parent.MouseHoverEnter:connect(function() --The rest of the script is up to you and only you end)
Visit this wiki page documenting the ClickDetector
for a few more info on how to use it (And a small example of how to use one)