#Help with my combat system

1 messages · Page 1 of 1 (latest)

leaden pulsar
#

I am making a 2d turn based rpg like block tales but i have problems with changing the character position and make him play a animation can somebody help me please.

mossy thicket
#

would be better if you actually asked the question

leaden pulsar
#

What?

leaden pulsar
#

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

dusk orchid
#

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--

leaden pulsar
#

Thanks