local elevator = game.Workspace.Elevator local platform = elevator.Platform local start = elevator.Start local finish = elevator.Finish local bodyPosition = platform.BodyPosition while true do bodyPosition.position = start.Position.Value wait(3) bodyPosition.position = finish.Position wait(3) 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.