I have this part, and when you hover over it with your mouse you are supposed to see a SelectionBox appear around it. However, this is not the case.
Hitbox: (ignore the server script)

Where the SelectionBox is from:

Hover:
local click = script.Parent.ClickDetector
click.MouseHoverEnter:Connect(function(plr)
script.Parent.Parent.Parent.Data.Extra.SelectionBox.Visible = true
end)
click.MouseHoverLeave:Connect(function(plr)
script.Parent.Parent.Parent.Data.Extra.SelectionBox.Visible = false
end)
I’m kind of stuck, any help is appreciated!