Gun moves in animation editor but not in game

Hello Devs,

So i have created this shooting animation for a gun and i have this problem where by the tool when its animating does not move with the arms but the parts of the gun move fine on their own this is what the animation looks like in animation editor:

and this is the in game of the gun animation:

this is the workspace of the gun

any help is appreciated.

2 Likes

and this is the script if anyone is wondering

local gun = script.Parent

local plr = game.Players.LocalPlayer
local runservice = game:GetService("RunService")
local rep = game:GetService("ReplicatedStorage")

local MP443 = rep:WaitForChild("Maingame"):WaitForChild("Items"):WaitForChild("MP443"):Clone()
local config = require(MP443:WaitForChild("Config"))
local camera = workspace.CurrentCamera
local players = game:GetService("Players")
local player =players.LocalPlayer
local char = player.Character or player.CharacterAdded:Wait()
MP443.Parent = rep.UnequippedItems
local mouse = player:GetMouse()


local Cf = CFrame.new()

local sinSpeed = 2.5
local sinSize = 25

local cosSpeed = 4
local cosSize = 4

local recoilSpeed = 5
local recoilSize = 1

local equipconnection
local ShootCooldown = false

local animations = {
	["Hold"] = MP443.AnimationController.Animator:LoadAnimation(MP443.Animations.Hold),
	["Shoot"] = MP443.AnimationController.Animator:LoadAnimation(MP443.Animations.Shoot),
}


Cf = config.Offset_From_Camera

function posmodel()
	if player.Character then
		MP443:SetPrimaryPartCFrame(camera.CFrame*Cf)
		local sin = math.sin(time()*sinSpeed)/sinSize
		local cos = math.cos(time()* cosSpeed)/cosSize
		if player.Character.Humanoid.MoveDirection.Magnitude > 0 then
			Cf = Cf:Lerp(CFrame.new(config.Offset_From_Camera.X+sin, config.Offset_From_Camera.Y+cos, config.Offset_From_Camera.Z),.1)
		else
			Cf = Cf:Lerp(config.Offset_From_Camera,.2)
		end
	end
	

end

function Shoot(Target)
	if not ShootCooldown then
		ShootCooldown = true
		if player.Character:FindFirstChild(script.Parent.Name) then
			
			MP443["UZI Fire"]:Play()
			animations["Shoot"]:Play()
		end
		if Target then
			rep.Maingame.RemoteEvents["Shoot"]:FireServer(Target, gun.Name)
		end
		task.wait(config.CoolDownBtwEachClick)
		ShootCooldown = false
	end


end

gun.Activated:Connect(function()
	Shoot(mouse.Target)
end)


local function equip()
	if not gun and MP443 then return end
	for i,part in pairs(gun:GetChildren()) do
		if part:IsA("BasePart") or part:IsA("UnionOperation") then
			part.Transparency = 1
		end
	end
	MP443.Parent = camera
	animations["Hold"]:Play()
	equipconnection = runservice.RenderStepped:Connect(function()
		if plr.Character.Humanoid.Health > 0 then
			posmodel()
			end
	end)
end

local function unequip()
	if not gun then return end
	equipconnection:Disconnect()
	MP443.Parent = rep.UnequippedItems
end



gun.Equipped:Connect(function()
	mouse.Icon = "http://www.roblox.com/asset?id=4662320382"
	equip()
end)

gun.Unequipped:Connect(function()
	unequip()
end)
1 Like