Hello! I hope you all are doing well.
I’m very confused as to how to make the tool move as it does in the animation:
But when the tool is equipped it does this:
Here is the Local Script:
local tool = script.Parent
local player = game.Players.LocalPlayer
local Char = game.Workspace:FindFirstChild(player.Name)
local GUITYPE = game:GetService("StarterGui")
local UIS = game:GetService("UserInputService")
local module = require(tool.ST.General)
local Weld = tool.Attach
tool.Equipped:Connect(function()
Weld.Part0 = module.RArm
Weld.Part1 = tool.Handle
GUITYPE:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, false)
module.Animations.Equip:Play()
wait(module.EquipTime)
module.Animations.Idle:Play()
GUITYPE:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
end)
tool.Unequipped:Connect(function()
module.Animations.Equip:Stop()
module.Animations.Idle:Stop()
end)
Please get back to me as soon as you can as I’m very desperate to solve this problem.