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

How to move players arm with Remote Event?

Asked by 3 years ago
Edited 3 years ago

I made a LocalScript which moves the players arm and a Remote Event which should make the arm move to other players too. But I don't know how to move it for other players. The LocalScript moves the Motor6D (Shoulder) via CFrame.

Server script:

game.ReplicatedStorage.ArmMovement.OnServerEvent:Connect(function(player)

    --Here is the problem. What script do I have to use to move the arm?

end)

I tried adding

Shoulder.C0 = Shoulder.C0 * * CFrame.Angles(math.rad(-90),0,0)

but it didn't work.

0
This is not a request website. THUNDER_WOW 203 — 3y
0
This is not a request website. raid6n 2196 — 3y

1 answer

Log in to vote
0
Answered by
raid6n 2196 Moderation Voter Community Moderator
3 years ago

maybe change it to

Shoulder.C0 = Shoulder.C0 * CFrame.Angles(math.rad(-90),0,0)
Ad

Answer this question