How do i make my npc character cancollide off without deleting is humanoid? please help me
i tried this but its not working:
local PS = game:GetService("PhysicsService")
local char = script.Parent.Morph
PS:CollisionGroupSetCollidable(char, false)
local char = script.Parent.Morph
for i,v in pairs(char:GetChildren()) do
if v:IsA("BasePart") then
PS:SetPartCollisionGroup(v)
end
end