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

How do I create tools with a custom hold animation?

Asked by 5 years ago
Edited 5 years ago

I want to create a tool with a custom hold animation and a custom run animation. As far as I know, is this not possible with the roblox tool or can I deactivate the standard animation ? Should I simply weld the handle of the tool to the user's hand? Or is there a better way?

0
make your animations, and replace them with the default ones, you may wanna do some research starmaq 1290 — 5y

1 answer

Log in to vote
1
Answered by
sheepposu 561 Moderation Voter
5 years ago

You could also make a script to play the animation when they are holding the tool. Something like this.

while true do
    local success, err = pcall(function()
        local tool = game.Workspace:WaitForChild(plr.Name).ToolName
    end)

    if success then
        --play animation
    end
end
0
And of course a "wait()" inside the while sheepposu 561 — 5y
Ad

Answer this question