LuiOG
(LuiOG)
April 13, 2021, 3:42am
#1
how do i move the torso with the camera, i have seen some posts for r15 and tried to convert to r6 but didnt work
1 Like
Why not just move the HumanoidRootPart? They’re almost the same position most of the time, and all characters should have one no matter if it’s R6 R15 or a custom rig.
Check out this tutorial by @CleverSource
I have made a simple local script for you which makes the player’s head and torso follow the player’s mouse. I’ll have a working example below, the .rbxl file provided, and the code! I hope this helps. If you have any questions feel free to ask me.
Code:
local RunService = game:GetService("RunService")
local Player = game.Players.LocalPlayer
local PlayerMouse = Player:GetMouse()
local Camera = workspace.CurrentCamera
local Character = Player.Character or Player.CharacterAdded:Wait()
local H…
Cheers!