of     1   

[rfa#hidefromsearch]
#98163103Sunday, May 19, 2013 8:17 PM GMT

[rfa#hidefromsearch]
Parthax
#98163690Sunday, May 19, 2013 8:22 PM GMT

Use a fake character. Characters, from experience, are really tough to do custom stuff with, unless you know exactly what to do. I'd use Motor6Ds.
Sharksie
#98163751Sunday, May 19, 2013 8:22 PM GMT

Let's not forget that no one uses Motor6Ds so you won't be getting help when they break.
RenderSettings
#98164083Sunday, May 19, 2013 8:25 PM GMT

I set the shoulder's Part0 to nil, so that even though the Animation script still runs and you have leg animations, it doesn't update it. I then just create a fake weld that mimics the original weld and animate that with CFrame tweening.
MrNicNac
#98164240Sunday, May 19, 2013 8:26 PM GMT

I never understood what was so bad about using Motor6Ds. I can definitely see them being more useful over Weld objects due to the fact that they allow for angling control, where as Welds don't. It's like making a decision over a car with GPS and a car without. One has more features than the other. They still connect and join the same.
nairod7
#98164603Sunday, May 19, 2013 8:29 PM GMT

First of all, according to the wiki, Motor6D is deprecated. There's another instance called Motor you can use. If someone has got more informations about it, I'd like to read them. The only reason for me to choose Motors is the CurrentAngle and the DesiredAngle properties. If I don't see any point of using them in my projects, I'd use Welds. To implement them without breaking roblox's animation system, I just change the Part0 or Part1 of the motor6D used by the animation, and I weld my arm and my torso with the new motor/weld I've made.
777MrEpic
#98165369Sunday, May 19, 2013 8:35 PM GMT

It is a question GET OUT. ~From what the other Scripters told me
Parthax
#98165639Sunday, May 19, 2013 8:37 PM GMT

777, we'll answer questions from the people who rarely ask them and the people we like. This is advanced discussion, most help requests are easy things that are not worth discussing.
[rfa#hidefromsearch]
#98169641Sunday, May 19, 2013 9:10 PM GMT

[rfa#hidefromsearch]
Fubl
#98170688Sunday, May 19, 2013 9:18 PM GMT

You should check out the Motor Instance. They use it in that new fangled flashlight gear. http://www.roblox.com/Flashlight-item?id=116040770
Vorlias
#98172475Sunday, May 19, 2013 9:33 PM GMT

I just modify the animate script so that I can manipulate the character's animations using the motors the character has without the ROBLOX animations for walking etc. don't mess with it.
Vorlias
#98172567Sunday, May 19, 2013 9:33 PM GMT

without the ROBLOX animations for walking etc. messing with it*. lol
nairod7
#98173508Sunday, May 19, 2013 9:41 PM GMT

"Question though: If Motor6D is deprecated, why is ROBLOX using it? Is ROBLOX just mocking itself?" When they've made their animation system, Motor6D wasn't deprecated. So they've used it. For x reason(s), they had to 'remate' that object which is now 'Motor'. Since today, they didn't update their animation script because there's no need to do so for now and Motor6Ds work fine in that case.
MilkTreatGolem
#98215516Monday, May 20, 2013 4:00 AM GMT

@777 Since when could we not post questions? It never said no questions, just no scripting requests. I think you're the one who should get out.
Merely
#98220263Monday, May 20, 2013 4:59 AM GMT

I asked a content team member about animating welds a while ago, and he said to use Motor6D.
Vorlias
#98220985Monday, May 20, 2013 5:10 AM GMT

@Merely Then I am doing it right. :D
BJCarpenter
#98221551Monday, May 20, 2013 5:20 AM GMT

DON'T bother doing a combo of Motors and welds. That would be pointless. I hacked the Motors a month ago. They r very simple; easy to use, if u study the "Animation" script 4 one or two days, u can make a Humanoid do any motor (Cartony) movements u want (I added a 'Spine' Motor, so Humanoid can Nod (same orientation as the Arm & Leg Motors)) (U can delete Player's Animate script on Load, and replace with a Custom "Animate" Script.) OR, u can 'Pose' Player in any Position, once u lern that Right Hip.CurrentAngle = 0 is Down, 3.14 & -3.14 are Up. He will return to Standing slowly. Take off a Hat with Right Shoulder.CurrentAngle = 3 Put on Hat Right Shoulder.CurrentAngle = -3 -- so his arm comes down behind him instead of in front of him. You could prolly add more Motors, like two more in the neck for complete neck movement (Player has a "Twitst" Shake ur head no Motor in it by default) Here's a really nice script for Starter Pack: repeat wait() until game.Players.LocalPlayer.Character game.Players.LocalPlayer.Character.Torso.Neck.MaxVelocity = 0.3 function turnheads() while true do wait() if game.Players.LocalPlayer.Character then if game.Workspace.CurrentCamera.CameraSubject == game.Players.LocalPlayer.Character:FindFirstChild("Humanoid") then camf = Vector3.new(game.Workspace.CurrentCamera.CoordinateFrame.X,game.Workspace.CurrentCamera.CoordinateFrame.Y,game.Workspace.CurrentCamera.CoordinateFrame.Z) lv = game.Players.LocalPlayer.Character.Torso.CFrame.lookVector torsop = game.Players.LocalPlayer.Character.Head.Position game.Players.LocalPlayer.Character.Torso.Neck.DesiredAngle = -(((torsop - camf).Unit):Cross(lv)).Y end end end end turnheads() For some spaghetti code Custom Animate script, take BrianJC from the Catalog. Comes with a 'Nod' Spine, but actually the Motor is about 1/4 stud too high.
BJCarpenter
#98222340Monday, May 20, 2013 5:34 AM GMT

Neither Welds nor Motors are Roblox's current animation system. Something called 'Animate' is. It can be found in the Skateboard. In the Wiki, it says "Check-back Later" Motors ARE compatable with Tools, and are fun & Cartoony: Put 6 or 12 in .CurrentAngle to "Wind-up" his arm.
BJCarpenter
#98222488Monday, May 20, 2013 5:37 AM GMT

*MotorD6s are Deprecated; NOT Motors.
BJCarpenter
#98223735Monday, May 20, 2013 6:06 AM GMT

This line is Deprecated: *DON'T bother doing a combo of Motors and welds. That would be pointless. I meant in OPs 'Animation System', but obviously I'm wrong, about that.
zars15
#98226337Monday, May 20, 2013 7:29 AM GMT

Motor(6D) is fun. I played with them on here: http://www.roblox.com/--place?id=44035610 Also motor is supported, while motor6D isn't. Just a name change.
Waterlimon
#98232187Monday, May 20, 2013 12:20 PM GMT

Hide the actual character, make fake body parts that hover approximately in the right positions using bodypositions and gyros? :D
Luxurize
#177897907Thursday, November 12, 2015 8:40 AM GMT

Lol, found this two year old post which can still be posted on. Anyway, I need to know how to use Motor6D's - there's no tutorials out there for them. “Insane isn't always black or white. We're all pathological, in our own ways.”
FailingEverySide
#197563141Friday, September 02, 2016 5:25 AM GMT

Ok so im making a game based off an anime called Elfen Lied. And if you you have played Tokyo Ghoul Bloody Nights, then you have seen the kagune. In the game im making I need to make something similar to the kagune. So im asking how to animate grouped together parts like the kagune

    of     1