Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Elevator Update, With Video, Unanchored, this is what happened. Suggestions?

Asked by
airkor 10
8 years ago
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

1 answer

Log in to vote
1
Answered by 8 years ago

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.

0
What was wrong was obvious, in the video it showed what was wrong, the platform goes down but falls down midway. airkor 10 — 8y
0
However, I enjoy your insight. I will change the wait time and see how it works. Thank you, airkor 10 — 8y
0
On my previous post, you told me to change the "D" and "P" values. What exactly do these values do? airkor 10 — 8y
0
You can see here http://wiki.roblox.com/index.php?title=API:Class/BodyPosition it is the strength. Nauseating 125 — 8y
View all comments (2 more)
0
Thank you, I change the max force of Y and it worked fine, thank you for your time, I would up vote you but unfortunately I am unable airkor 10 — 8y
0
Next time I will not post 5 different posts, xD, I was a bit eager to get this thing over with. airkor 10 — 8y
Ad

Answer this question