01 | local elevator = game.Workspace.Elevator |
02 | local platform = elevator.Platform |
03 | local start = elevator.Start |
04 | local finish = elevator.Finish |
05 | local bodyPosition = platform.BodyPosition |
06 |
07 | while true do |
08 | bodyPosition.position = start.Position.Value |
09 | wait( 3 ) |
10 | bodyPosition.position = finish.Position |
11 | wait( 3 ) |
12 | end |
http://s1031.photobucket.com/user/galvixcod/media/robloxapp-20150822-1032134_zpsjgdjb2cm.mp4.html?o=0
Someone asked earlier, Elevator is the name of the model , and elevator was already made a variable of game.Workspace.Elevator so i saved myself some typing and just put elevator.Start and elevator.Finish as well as elevator.Platform
You haven't even explained what's wrong? How are we supposed to help you?
Secondly, you have already created Multiple Multiple Multiple topics on this same problem. Stop cluttering the website and just make an edit or a comment to your original instead of ignoring the replies.
Now since you didn't tell us the problem, i'm going to have to spitball on what exactly it is you want.
The elevator is kind-of whacky? It moves up, and then moves down quite quickly without stopping. This would be due you your loop being too short (3 seconds) try make it longer.