IKGripUtils
Utility methods for grip attachments
Functions
create
Parent to the attachment we want the humanoid to grip.
-- Get the binder
local leftGripAttachmentBinder = serviceBag:GetService(require("IKLeftGrip"))
-- Setup sample grip
local attachment = Instance.new("Attachment")
attachment.Parent = workspace.Terrain
attachment.Name = "GripTarget"
-- This will make the NPC try to grip this attachment
local objectValue = IKGripUtils.create(leftGripAttachmentBinder, workspace.NPC.Humanoid)
objectValue.Parent = attachment