Why is my NPC interacting with a non-collidable object?
Asked by
4 years ago Edited 4 years ago
I have a npc that follows you around. I want to create a cylinder at certain intervals that is attached to the npc. When I try to do this, my boss interacts with my cylinder for a quarter of a second when canCollide is clearly disabled. The same thing happened to me when I imported a cylinder from blender and tried using that. However, any use of a plain "MeshPart" seems to not affect the npc. These two interactions only happen when I have my weld that welds between the new part and the npc.
Here is the code that I am using:
01 | local warning = Instance.new( "Part" ) |
02 | warning.CanCollide = false |
03 | warning.Anchored = false |
05 | local mesh = Instance.new( "SpecialMesh" ) |
06 | mesh.MeshType = Enum.MeshType.Cylinder |
09 | warning.Size = Vector 3. new( 16 , . 1 , 16 ) |
10 | warning.CFrame = CFrame.new(myChar.HumanoidRootPart.Position.X, 4 , myChar.HumanoidRootPart.Position.Z) |
12 | warning.Name = "Warning" |
14 | warning.Parent = game.workspace |
15 | local weld = Instance.new( "WeldConstraint" ) |
16 | weld.Part 0 = myChar.Head |
20 | warning:SetNetworkOwner() |