Hi everyone:
I’m trying to make the mouse’s target ignore a part, and pass through it, such as in the diagram.
How do you make the mouse pass through the part to go to the UI?
Hi everyone:
I’m trying to make the mouse’s target ignore a part, and pass through it, such as in the diagram.
How do you make the mouse pass through the part to go to the UI?
You should be able to modify the mouse’s TargetFilter
. Here’s the documentation:
Mouse.TargetFilter | Documentation - Roblox Creator Hub
you should bare in mind that the Mouse
object only remains undeprecated because of “its widespread use” (documentation). Things like UserInputService
paired with Raycasting may be better.
Hey, thanks for the reply.
When I tried to change it, it still wouldn’t trigger Frame.MouseHover
, even though the TargetFilter
of the mouse was set.
So is it a GUI on a part? Why do you want to use another part in front of it? If it’s a GUI element, I don’t think MouseHover
exists for it. You could use MouseEnter
and MouseLeave
, but like I said above, the Mouse object is not the best object to use for this.
So I found the problem, which is that mouse.TargetFilter
also ignores all the descendants of the part, however, I don’t what the descendants to be ignored. Any ideas?
Sorry, I mean MouseEnter
. It’s a part with a SurfaceGui
If I were to use mouse raycasts, would it also ignore the descendants?
This is just a test game, which is why I’m using the mouse object for the sake of simplicity.
You’d need to use a RaycastParams
object and set the FilterDescendantsInstances
. What is the purpose of this?
Im trying to create a build system similar to the one you see in games like Strucid, from Fortnite. I was just using the Mouse
object for now, so if I want to make it more advanced later, I could switch to services like UserInputService
and ContextActionService
.