Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

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

01local player = game.Players.LocalPlayer --local script in starterGui
02local mouse = player:GetMouse()
03game:GetService("RunService").RenderStepped:Connect(function()
04    mouse.TargetFilter = workspace
05    player.Character.Torso.Neck.C1 = CFrame.new()
06    player.Character.Torso.Neck.C0 = CFrame.new(0, 1.5, 0) * CFrame.Angles(math.asin((mouse.Hit.p - mouse.Origin.p).unit.y), 0, 0)
07 
08 
09 
10player.Character.Torso:WaitForChild("Left Shoulder").C1 = CFrame.new()
11    player.Character.Torso:WaitForChild("Left Shoulder").C0 = CFrame.new(1.5, 0, 0) * CFrame.Angles(math.asin((mouse.Hit.p - mouse.Origin.p).unit.y), 0, 0)
12 
13player.Character.Torso:WaitForChild("Right Shoulder").C1 = CFrame.new()
14    player.Character.Torso:WaitForChild("Right Shoulder").C0 = CFrame.new(-1.5, 0, 0) * CFrame.Angles(math.asin((mouse.Hit.p - mouse.Origin.p).unit.y), 0, 0)
15end)

thank you in advance for your help ;)

0
And what is the problem. Instead of posting IP grabber links why not include it in the question itself programmerHere 371 — 5y

2 answers

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

Insert a local script in StarterPlayer inside of StarterPlayerScripts and type this

local script in StarterPlayerScripts

01--get service.
02local cam = workspace.CurrentCamera
03 
04local plr = game.Players.LocalPlayer
05 
06local char = plr.Character or plr.CharacterAdded:Wait()
07local hrp = char:WaitForChild("HumanoidRootPart")
08 
09local neck = char:FindFirstChild("Neck", true)
10 
11local y = neck.C0.Y
12 
13--main script
14game:GetService("RunService").RenderStepped:Connect(function()
15 
View all 22 lines...
0
Sorry, but this script is rotating only head, and wrong way.. Newh0hrizonCz 58 — 5y
Ad
Log in to vote
0
Answered by 5 years ago

Sorry, but this script is rotating only head, and wrong way..

Answer this question