I’m trying to do a moving platform and I did it, but its not working well. When player stands on platform and part starts moving - the player not going along with the part. He just falls in void instead of being sticked with part.
Script I’m using right now:
bp = script.Parent.Position
while true do
script.Parent.BodyPosition.position = Vector3.new(bp.x-20, bp.y, bp.z)
wait(3)
script.Parent.BodyPosition.position = Vector3.new(bp.x, bp.y, bp.z)
wait(3)
end
Sorry for my english,
Thanks.