Tool doesn't have animations

so i found that when i see the gameplay footage everything is working nicely right? but the grip of the tool is on the incorrect position.

CMIIW

so another guy has this problem and found a solution and he uses the fe gun kit tool grip script:

local Tool = script.Parent

function Equipped()
	local Character = Tool.Parent
	local RightArm = Character:FindFirstChild("Right Arm")
	if RightArm then
		local RightGrip = RightArm:FindFirstChild("RightGrip")
		if RightGrip then
			local Motor6D = Instance.new("Motor6D")
			Motor6D.Part0 = RightGrip.Part0
			Motor6D.Part1 = RightGrip.Part1
			Motor6D.C0 = RightGrip.C0
			Motor6D.C1 = RightGrip.C1
			Motor6D.Parent = RightArm
			Motor6D.Name = "Handle"
			RightGrip:Destroy()
		end
	end
end

function Unequipped()
	local Motor6D = Tool.Parent:FindFirstChild("Handle")
	if Motor6D then
		Motor6D:Destroy()
	end
end

Tool.Equipped:Connect(Equipped)
Tool.Unequipped:Connect(Unequipped)

simply because the right grip doesnt work with animations, so the solution is to create a new motor6d replacing the right grip, CMIIW.

I don’t think he used RightGrip for welding though. Motor6D name also doesn’t matter

wdym? i thought rightgrip is created automatically

What I’m saying is that he can just make a separate Motor6D and attack the Handle to any body parts that is also welded to the Motor, then he can perform animations. Learned this through HowToRoblox

It’s just that the animations are already done along with the tool’s animations, the problem is that the “tool” animations don’t load, it just stays still

Do you think that could solve the problem?

have u tried using the script i tell u?

I tried it, but the exact same thing keeps happening

did u weld all the other tools with motor6d

right grip is a weld thats added automatically by roblox not by script.

the reason why it need to delete the right grip then replace with a new motor6d is so that u dont have 2 welds cause right grip is a normal weld not motor 6d CMIIW

it’s kinda pointless. you don’t need to delete the right grip becuz u can just place any motor6d anywhere and still work

also fe gun kit is outdated

the guy who made the script modify it so it isnt outdated btw

it doesn’t mean he specifically updated that grip system though.
just watch howtoroblox tutorial it still works

no no send it to me, dont delete it

heres where i got the script from, mb i was making grammar mistake before:

i see. since it doesn’t work according to OP i guess you can use the solution i had (or HowToRoblox’s).

animating handles specifically on the right side doesn’t mean you need to specifically do it on the right hand, it can be anywhere on the body

yes it can be on any body, but my point is that u need to add a new motor 6d since he is using a tool

hmm is your animation priority is set to action?

Holy moly I reworked everything with the Welding parts with Motor6D and it works! Thank you!

1 Like

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