How do I change a grip pos of a tool? I’ve tried this script but it isnt working.
for i,v in pairs(script.Parent:GetChildren()) do
if v:IsA(“Tool”) then
v.GripPos.Y = -1
end
end
How do I change a grip pos of a tool? I’ve tried this script but it isnt working.
for i,v in pairs(script.Parent:GetChildren()) do
if v:IsA(“Tool”) then
v.GripPos.Y = -1
end
end
I believe you actually use toolName.GripForward, toolName.GripUp, etc. to modify those. They are formatted as CFrames.
Here is the Roblox Developer Wiki article referencing this:
Curious, why are you looping through Tool instances if you are inside a tool already?
Additionally, I believe CloneTrooper1019 has a plugin where you can change the ToolGrip Positions in the Workspace itself, without having to manually input CFrames.
Replace this:
For this:
v.GripPos = Vector3.new(0,-1,0)
If this is not what you want, say what you want.