Building a Ferris Wheel

In the last lesson, you learned how to make a door with HingeConstraints. Many contraptions in Roblox will use multiple constraints to build more complicated mechanisms. In particular, you can configure several constraints to be actuated, meaning they will move under their own power. This tutorial will show you how to actuate a HingeConstraint to be a motor in order to make a ferris wheel.

Ferris Wheel Setup

  1. Add a ferris wheel into a place using either this model or this pre-built place.

    Edit in Studio option from the experience's main page
  2. To view constraints and attachments, in the Model tab, toggle on Constraint Details.

Add Attachments

You will need to add attachments to the ferris wheel to determine where it will rotate. When working with attachments, it helps to move the pieces you are working with apart so you can clearly see the position and orientation of the attachments.

  1. In the Explorer, expand FerrisWheel, select the MainSupport model, and move it so you can see the side of the wheel axle as well as the side of the support axle.

    alt

  2. Expand MainSupport and select SupportAxle. Insert an attachment and rename it SupportAttachment.

  3. Move SupportAttachment so that it is on the inside edge of the SupportAxle.

    alt

  4. In the FerrisWheel, select WheelAxle and add a new attachment named WheelAttachment.

  5. Move the WheelAttachment to the edge of the axle. Make sure this is the side facing the support where you placed the SupportAttachment.

    alt

  6. If you hover over the attachments, you'll see yellow and orange arrows appear. Make sure the yellow arrows for both attachments are pointing in the same direction. If they aren't, use the Rotate tool to make sure they are pointed the same way.

    alt

Creating a HingeConstraint

Now that both attachments are in place, it's time to add a HingeConstraint to act as the motor for the wheel.

  1. In the SupportAxle, create a new HingeConstraint and name it MainMotor.

  2. In the properties of MainMotor, set Attachment0 to SupportAttachment, and Attachment1 to WheelAttachment.

  3. Select the MainSupport model and return it to its original position.

    alt

Changing to Motor

By default, HingeConstraints will only turn if an outside force acts on them, such as a user character pushing in the connected parts. To make a HingeConstraint turn on its own, we have to configure it to be a Motor, set our desired turn rate, and make sure the hinge has enough torque.

  1. Select MainMotor and, in the properties, change ActuatorType to Motor.

  2. Change AngularVelocity to 0.314.

  3. Copy the inf value from MotorMaxAcceleration to MotorMaxTorque so that the wheel can handle any amount of weight.

  4. Test your wheel turning behavior by selecting Play and testing your experience.

Notice that you only need the motor on one side of the wheel; you do not need motors on both sides. When building with contraptions, try using as few constraints as possible. This ensures that your contraptions are stable and reliable.

Now that you have the ferris wheel fully built, try experimenting with more constraints. You can add more cars to the ferris wheel, or you can try building an original contraption.