of     1   

ez_street
#182899083Tuesday, February 02, 2016 10:40 PM GMT

Is there a way to make multiple parts target filtered at the same time?
JarodOfOrbiter
#182900620Tuesday, February 02, 2016 11:05 PM GMT

Do your own raycatsining
fishguy100
#182900683Tuesday, February 02, 2016 11:06 PM GMT

@Jarod Just saying, that is not a good idea.
cntkillme
#182900696Tuesday, February 02, 2016 11:06 PM GMT

A weird way but it can work in some cases is if you put all those parts you want ignored in the same model.
fishguy100
#182900776Tuesday, February 02, 2016 11:07 PM GMT

Why not just do something like this(inefficient but who cares; it's roblox) local IgnoreTable = {} Mouse.Move:connect(function() for _,V in pairs(IgnoreTable) do if V ~= Mouse.Target then -- Stuff end end end
cntkillme
#182900801Tuesday, February 02, 2016 11:08 PM GMT

Because it's still not filtered, do you even know what TargetFilter does?
fishguy100
#182900880Tuesday, February 02, 2016 11:09 PM GMT

You think I am completely mentally unstable, don't you
cntkillme
#182900929Tuesday, February 02, 2016 11:10 PM GMT

No, I think you never had a brain to begin with making it impossible to be 'mentally unstable'.
fishguy100
#182900993Tuesday, February 02, 2016 11:11 PM GMT

HOLE*
fishguy100
#182901124Tuesday, February 02, 2016 11:13 PM GMT

[ Content Deleted ]
bosswalrus
#182901135Tuesday, February 02, 2016 11:13 PM GMT

Fish, your reply was deleted. It isn't smart to repost it.
HomeguardDev
#182901201Tuesday, February 02, 2016 11:14 PM GMT

If you really want to continue using target filter, you can put all of the objects that you want to ignore (assuming they are easily aggregated) into a model before you check the click, set the target filter to the model, and then programmatically ungroup them later. Of course this is a hassle, and I'm sure somebody has a better solution.
fishguy100
#182901204Tuesday, February 02, 2016 11:14 PM GMT

LEAVE ME ALONE BOSSWALRUS
ray_revenge
#182901252Tuesday, February 02, 2016 11:15 PM GMT

super edgy
bosswalrus
#182901266Tuesday, February 02, 2016 11:16 PM GMT

If you want to be left alone don't post to a public forum, that's my suggestion.
fishguy100
#182901291Tuesday, February 02, 2016 11:16 PM GMT

YOU GO DIE IN A HOLE TOO.
ez_street
#182901466Tuesday, February 02, 2016 11:19 PM GMT

Wait, you can set the TargetFilter value to a model? I thought it was only valid if the object was a BasePart. I'll try it, thanks!
cntkillme
#182901658Tuesday, February 02, 2016 11:22 PM GMT

Yeah you can set it as a model, pretty sure at least. I remember seeing a bunch of scripts use a character model as it.
ez_street
#182902201Tuesday, February 02, 2016 11:31 PM GMT

That makes it a lot easier for me xD. I was trying to set it to tables of the parts inside the model.

    of     1