Howdy mates! If you have time… I’m trying to make a Fighting Game and I want to implement this feature as seen in the video below…
If you don’t know, as shown in the video while my character is playing animations the camera follows the torso or Root part’s movements. I’d really like to implement this in my game, I’ve seen this feature in other fighting games as well. I’ve tried everything to try to implement this feature in my game, I even try to search it up, but nothing worked. How do I get this small feature to work in my game?
Well, couldn’t you just modify the camera a bit to use the Attach CameraType, and the Torso as the CameraSubject? I use it in my game, but with a player’s head, and it works similarly to what you show here.
Copy the PlayerModule (you get it by copying it from the StarterPlayerScripts when the game runs) script, then search up for bodyPartToFollow, its in the script called BaseCamera
and replace its value with the part that you want.
(in “The Strongest Battleground” the part to follow its the Torso, so you might use humanoid.Parent:FindFirstChild("Torso") as reference)
Dont forget to replace too Humanoid.RootPart as your wanted part.
(Basically the same value as bodyPartToFollow)