Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How can I disable the hand-out position on tools?

Asked by 5 years ago

How would I disable the hand-out position when someone equips a tool? I tried editing the Animate script, but nothing happened. Does anyone know how I would do this?

0
I did something like this where I made an animation so whenever the person held out the tool it would be the animation, you don't really have to change anything more than that, but if you don't want any animation you can just set the needs handle property of tool to false. Jacobingg 2 — 5y

1 answer

Log in to vote
0
Answered by 5 years ago
 Tool.Equip.OnServerEvent:connect(function(play)
    a1 = hum:LoadAnimation(Tool.Hold)
       a1;Play()
end)

you would want to do something like this, and fire the remote event on a local script.

Ad

Answer this question