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

Elevator's Platform won't move, How can I fix this?

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
    wait(3)
    bodyPosition.position = finish.Position
    wait(3)
end

How can i fix this script? I've tried adding more force to the body position but it does not help. Suggestions?

Edit: The Platform just stays in place, it doesn't, move i'm confused as to why.

1 answer

Log in to vote
0
Answered by 8 years ago

Just checking, is any part in the way anchored? body position doesnt work if the part is anchored and cannot go through parts that are anchored

0
I Unanchored the platform and turned cancollide to false and it still stands in place airkor 10 — 8y
Ad

Answer this question