How to Make Conveyor Belts: Difference between revisions
>Cecibean m Removed section |
>Cecibean m removed walls for now |
||
Line 14: | Line 14: | ||
Select the brick using the [[Resize]] button, and stretch it out to the size you want the conveyor belt to be. While the brick is selected, change the brick property called "TopSurface" to "Smooth" - so that the items being moved will not get stuck on the belt. If you don't have the Property window open, click View from the menu bar, and select Properties to open it. | Select the brick using the [[Resize]] button, and stretch it out to the size you want the conveyor belt to be. While the brick is selected, change the brick property called "TopSurface" to "Smooth" - so that the items being moved will not get stuck on the belt. If you don't have the Property window open, click View from the menu bar, and select Properties to open it. | ||
You can change the color of the brick to your choice | You can change the color of the brick to your choice. | ||
== Turn the Conveyor Belt On == | == Turn the Conveyor Belt On == |
Revision as of 13:04, 5 November 2008
Introduction
A conveyor belt is an object that pulls other objects along on top of it. They are often used in assembly lines in factories, in airports to carry luggage, or in grocery store checkout aisles. This tutorial will teach you how to build a working conveyor belt, a rushing river, and a rotating whirlpool - all using either the Velocity or the RotVelocity properties of a brick.
Create The Brick
Edit your place using Roblox Studio. You will need the additional features available from Roblox Studio to build the conveyor belt. If you are in Edit mode, click the menu on the top left called Tools to open up the Roblox Studio features.
From the menu, click Insert and select Object. From the pop up window, select Part - which will insert a brick into your place. Click the Zoom Extents button on the top button bar if you cannot find the new brick. This will center your screen on the brick.
Select the brick using the Resize button, and stretch it out to the size you want the conveyor belt to be. While the brick is selected, change the brick property called "TopSurface" to "Smooth" - so that the items being moved will not get stuck on the belt. If you don't have the Property window open, click View from the menu bar, and select Properties to open it.
You can change the color of the brick to your choice.
Turn the Conveyor Belt On
This section will describe how to make the brick move the items that are on top of it.
Select the brick and look for the property called Velocity in the Properties window.
Change its coordinates according to the direction of your conveyor belt.
They're X, Y, Z coordinates, so you won't need the middle one, Y, -- the vertical direction. Negative numbers apply the same amount of force as positive numbers, but in the opposite direction. You MUST do this in edit mode or it won't work.
Final Step - Anchor It
The final step is to highlight the conveyor belt brick in the Roblox Editor. In its properties, there should be a checkbox labeled, 'Anchored'. Place a check here to lock it in place. Now that it's locked in place, it applies its velocity to whatever touches it.
Rivers
Rivers are simply colored conveyor belts.
- If you can't see the properties window in Roblox Studio, go to View->Properties.
- Insert > Object > Part. This will insert a brick into your map.
- Resize that brick to what ever size you want.
- Change the BrickColor to Bright blue.
- Make sure the Anchored box is checked.
- Make sure that brick is solid (i.e., a Transparency of 0). (Bricks added to the map are solid by default).
- Copy and paste this same brick, but uncheck the CanCollide box (i.e., set the value to false).
- Make sure the Anchored box is checked on this piece, too.
- If you want earthen sidebanks to the river, then add them.
Making it a Flowing River
Now we'll look at how to make it work! Select the bottom river piece (The solid one) and look in properties. Find the velocity property, and press the + sign. Now, you should see three values. X, Y, and Z. Now, set the X value of the property to 100. Finally, group the bottom and top together.
Now we have to test it. Go to Tools->Test->Play Solo. You should get another window where you're playing solo. Go to your river, and step on it. If it isn't flowing the right way, then go back to studio and rotate it. Test it again to make sure.