So now I have 3 blocks. The block on top is the "Finish" block. The block in the middle and what I want to move is the "Platform" and the block on bottom is the "Start". The Platform has a BodyPosition inserted in it and I created this script to have the Platform move to the Finish but instead the Platform just falls.
local model = game.Workspace.MovingPlatformModel local platform = model.Platform local start = model.Start local finish = model.Finish local body = platform.BodyPosition body.position = finish.Position wait(5) body.position = start.Position
Insert BodyForce into your platform and put a number in "Force" in the Y dimension i.e.(0,1000,0)