?So basically I'm trying to do a local script that rotates the hands and head to the mouse.
Asked by
5 years ago Edited 5 years ago
Hi, programmers!
So basically I'm trying to do a local script that rotates the hands and head to the mouse, but I got stuck here ...
https://ctrlv.tv/eIY7 <= My problem
My scripts:
01 | local player = game.Players.LocalPlayer |
02 | local mouse = player:GetMouse() |
03 | game:GetService( "RunService" ).RenderStepped:Connect( function () |
04 | mouse.TargetFilter = workspace |
05 | player.Character.Torso.Neck.C 1 = CFrame.new() |
06 | player.Character.Torso.Neck.C 0 = CFrame.new( 0 , 1.5 , 0 ) * CFrame.Angles(math.asin((mouse.Hit.p - mouse.Origin.p).unit.y), 0 , 0 ) |
10 | player.Character.Torso:WaitForChild( "Left Shoulder" ).C 1 = CFrame.new() |
11 | player.Character.Torso:WaitForChild( "Left Shoulder" ).C 0 = CFrame.new( 1.5 , 0 , 0 ) * CFrame.Angles(math.asin((mouse.Hit.p - mouse.Origin.p).unit.y), 0 , 0 ) |
13 | player.Character.Torso:WaitForChild( "Right Shoulder" ).C 1 = CFrame.new() |
14 | player.Character.Torso:WaitForChild( "Right Shoulder" ).C 0 = CFrame.new(- 1.5 , 0 , 0 ) * CFrame.Angles(math.asin((mouse.Hit.p - mouse.Origin.p).unit.y), 0 , 0 ) |
thank you in advance for your help ;)