Animation Not Playing in The Right Direction

  1. What do you want to achieve?

I need the Person thats getting beaten their animation Plays in the Direction im beating them from.

  1. What is the issue? Include screenshots / videos if possible!

  2. What solutions have you tried so far? Asked in Big Roblox Servers on Disc

Sorry for laggy Footage!

You can use CFrame.lookAt to make the person to face towards the other person.

local character = ? --make this the model of the person who is being beaten
local otherCharacter = ? --make this the model of the person who is beating them

local lookCFrame = CFrame.lookAt(character.PrimaryPart.Position, otherCharacter.PrimaryPart.Position)

character:SetPrimaryPartCFrame(lookCFrame)
--play animation here

Here’s like the basics of how you’d do that