How does one find the right tool grip

Hello! I have a question, how do I find a specific tool grip.

For example…

I want to find the position of the grip, image

See https://devforum.roblox.com/t/the-xy-problem-not-quite-the-fashion-you-want-your-questions-in/239933.

You should elaborate upon what you’re trying to do here rather than asking for help regarding a “solution” you’ve already come up with for your supposed problem. So my question to you would be What is the overall goal you’re trying to achieve by finding the grip position?

My goal is to find a specific grip number.

1 Like

Could you elaborate on what you mean by “specific tool grip”, “position of the grip”, and “specific grip number”?

For example, I want to know what are the numbers of a tool when I equip it, the appearance & handling.

You can index the tool with a specific property name to get the value of that property:

local grip = tool.Grip
local gripPos = tool.GripPos
local gripForward = tool.GripForward

A full list of their properties are available on the Developer Hub.
https://developer.roblox.com/api-reference/class/Tool

1 Like