posting on behalf of someine im working with
So I’m posting as this is a script for a goalie stick and when someone equips the tool it plays the animation and the goalie stick is supposed to be in the right position from where it was animated, but it’s not. How do I fix this? It should be in the right position from where it was animated so that when I click on the tool it’s in the right position.
local Tool = script.Parent
local Player = Tool.Parent.Parent
local Char = Player.Character
Tool.Equipped:Connect(function()
local Motor6D = Instance.new("Motor6D",Char["Right Arm"])
Motor6D.Name = "GoalieMotor6D"
Motor6D.Part0 = Char["Right Arm"]
Motor6D.Part1 = Tool.Handle
local stance = game:GetService("ReplicatedStorage"):WaitForChild("GoalieControls"):WaitForChild("IdleAnimation")
local AnimTrack = Char.Humanoid.Animator:LoadAnimation(stance)
AnimTrack:Play()
end)
What is happening
What it’s supposed to look like