#Help with my combat system
1 messages · Page 1 of 1 (latest)
would be better if you actually asked the question
What?
Yo I say my problem here
Well my problem is that when the character move it bugs and the anim is not playing I need another manner to move the character than don't let him move and stop the walking anim
chage position with hrp.CFrame and load animations like this
--startercharacerscripts--
local char = script.parent
local humanoid = char:WaitForChild("Humanoid")
local animator = humanoid:WaitForChild("Animator")
local anim = instance.new("Animation")
anim.AnimationId = "rbxassetid://putyouridhere"
local animtrack = animator:LoadAnimation(anim)
--then just do animtrack:Play() wherever u want to start it--
Thanks