So I wanted to make this fire blast that tracks the mouse hit position, but I do not want it to hit a part in the workspace, only the sky box. I tried doing this -
01 | spawn( function () |
02 |
03 | for i, v in pairs (game.Workspace:GetChildren()) do |
04 |
05 | if v:IsA( "Part" ) then |
06 |
07 | Mouse.TargetFilter = v |
08 |
09 | elseif v:IsA( "MeshPart" ) then |
10 |
11 | Mouse.TargetFilter = v |
12 |
13 | end |
14 |
15 | end |
But it didnt blacklist anything it still hit all of the items in the workspace.
You can use rays to help. Instead of just a normal ray, you can use " :FindPartOnRayWithIgnoreList"
Here is the link to the website for it, it explains how you can use it, and etc. https://developer.roblox.com/en-us/api-reference/function/WorldRoot/FindPartOnRayWithIgnoreList
Let me know if you need help!