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

I'm not sure if I am doing this "Transform" thing right. Can anyone help me?

Asked by 4 years ago
Edited 4 years ago

I recently discovered about Motor6D.Transform. When I first heard of this, I decided to go to studio and test it out.

local function Transform(joint,cframe,time)
    joint.Transform = joint.Transform:lerp(cframe,time)
end

game:GetService("RunService").Stepped:Connect(function()
    Transform(RightShoulder,CFrame.Angles(math.rad(20),0,0),.5)
    Transform(RightElbow,CFrame.Angles(math.rad(120),0,0),.5)
    Transform(RightWrist,CFrame.Angles(math.rad(10),0,0),.5)
end)

But after running it, it did not seem to work..

If anyone could help me, I would really appreciate it.

There are no errors in the output if you are wondering.

1 answer

Log in to vote
0
Answered by
tomekcz 174
4 years ago
Edited 4 years ago

It can help u

https://twitter.com/CeaSoul/status/976501070179590149

https://pastebin.com/7z0NPG1r (script that was showcased in this tweet)

(put it as localscript in startercharacterscripts) - edit

0
I tried that script in studio but the results are still the same. Chrysophrase 4 — 4y
0
I tried also tomekcz 174 — 4y
0
look at edit tomekcz 174 — 4y
0
Works but nobody else can see it. Thank you for the answer though. Chrysophrase 4 — 4y
0
It's filtering diabled you need to make this script filtering enabled tomekcz 174 — 4y
Ad

Answer this question