Question about GripPos

Is there any way to change GripPos on LocalScript without unequip and equip tool back?
If i change GripPos on client it will be unchanged on server until i unequip and equip it back
How to change GripPos on server without unequipping and equipping it back using ONLY Localscript?

1 Like

When you equip a tool, it creates a weld called the “ToolGrip” in one of the hand parts (i forgot which one it is).

The Grip properties on the Tool dictate how this weld is positioned (using C0/C1), so just update the weld C0/C1 directly.

Thanks for helping! But it’s not working it’s still changing position on client

What are you trying to do here? Move the grip of a tool on the client and have it replicate to the server? I dont know if this is possible.

Nevermind. Best method to hide that you unequip and equip tool is do it in the loop

local tool = pathoftoolhere
while wait() do
      tool.Parent = game:GetService("Players")["LocalPlayer"]["Backpack"]
      tool.Parent = game:GetService("Players")["LocalPlayer"]["Character"]
end

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.