Make tool use your games default walk/idle anims

.can i make a tool use your games idle and walk anims rather than having you just hold the tool out inyour hand while you’re walking/idle

1 Like

Try deleting the handle and turning off requires handle in the tool object.

So what you can do is:

R15 characters

1: Insert the Animate local script into StarterCharacterScripts; (if none)
2: Delete the lines from 74 to 82.
Those lines should be:

	toolnone = {
				{ id = "http://www.roblox.com/asset/?id=507768375", weight = 10 } 
			},
	toolslash = {
				{ id = "http://www.roblox.com/asset/?id=522635514", weight = 10 } 
			},
	toollunge = {
				{ id = "http://www.roblox.com/asset/?id=522638767", weight = 10 } 
			},
R6 characters

1: Insert the Animate local script into StarterCharacterScripts; (if none)
2: Delete the lines from 40 to 49.
Those lines should be:

	toolnone = {
				{ id = "http://www.roblox.com/asset/?id=182393478", weight = 10 } 
			},
	toolslash = {
				{ id = "http://www.roblox.com/asset/?id=129967390", weight = 10 } 
--				{ id = "slash.xml", weight = 10 } 
			},
	toollunge = {
				{ id = "http://www.roblox.com/asset/?id=129967478", weight = 10 } 
			},

Hope it helped!