Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

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:

01local warning = Instance.new("Part")
02warning.CanCollide = false
03warning.Anchored = false
04 
05local mesh = Instance.new("SpecialMesh")
06mesh.MeshType = Enum.MeshType.Cylinder
07mesh.Parent = warning
08 
09warning.Size = Vector3.new(16, .1, 16)
10warning.CFrame = CFrame.new(myChar.HumanoidRootPart.Position.X, 4, myChar.HumanoidRootPart.Position.Z)
11 
12warning.Name = "Warning"
13 
14warning.Parent = game.workspace
15local weld = Instance.new("WeldConstraint")
16weld.Part0 = myChar.Head
17weld.Part1 = warning
18weld.Parent = warning
19 
20warning:SetNetworkOwner()

1 answer

Log in to vote
1
Answered by
stef0206 125
4 years ago
01local warning = Instance.new("Part")
02warning.CanCollide = false
03warning.Anchored = false
04warning.Massless = true -- This is where the fix is
05 
06local mesh = Instance.new("SpecialMesh")
07mesh.MeshType = Enum.MeshType.Cylinder
08mesh.Parent = warning
09 
10warning.Size = Vector3.new(16, .1, 16)
11warning.CFrame = CFrame.new(myChar.HumanoidRootPart.Position.X, 4, myChar.HumanoidRootPart.Position.Z)
12 
13warning.Name = "Warning"
14 
15warning.Parent = game.workspace
View all 21 lines...

You have to set the Part to Massless, otherwise Roblox will take it into account when calculating the center of mass.

Ad

Answer this question