Every time I jump on it, the brick falls but continues in the motion that I've set it on. After I jump back off it slowly returns back to where it should be.
Body Gyro- D 500 maxtorque 400000, 40000000000, 400000 P 3000 Script- local model = Workspace.Model local platform = model.platform local finish = model.finish local start = model.start local bodyposition = platform.BodyPosition
while true do bodyposition.position = start.Position wait (4) bodyposition.position = finish.Position wait (4) end
you need a y value on the body position thats higher then the weight of the player so just put a number higher than 4000 like 500000 and set x and z to 0
Use bodyposition and set only the y to the set height :) also make all the values maxed so it tries to go to that position super hard.