|
| 07 Aug 2014 08:46 PM |
| I have looked all the over the web and cannot possibly find out how to make an elevator. I need an elevator that will be able to have multiple floors for an apartment building I am currently working on I know Studio very well but I am not good at scripting😐 |
|
|
| Report Abuse |
|
|
| 07 Aug 2014 08:54 PM |
You could constantly move the CFrame of the elevator. EX:
while wait (.2) do if --button function-- == true do for i = 1, --difference in floors by 1 stud-- do game.Workspace.--object--.CFrame = CFrame.new (0,1--positive up, negative down--,0) wait (.1) end end end |
|
|
| Report Abuse |
|