How do i make the player go with the tweening brick?

How would I make the player go with a brick instead of the player falling off? do I tween the player as well? Any help would be appreciated,

1 Like

Best chance you have is to either forcefully make the player follow the object client-side with CFrame or something, or to make the object physical (as physically moving objects will be able to bring things along with it) and tween something like the BodyMover’s data or the attachments used in Align-Constraints.

so how should I do it? can you give me an example?

Examples would be either raycasting down to see if you are standing on it, and if so, updating your position to keep a relative offset, or using AlignPosition/AlignOrientation or BodyPosition and BodyGyro and tweening the respective coordinates for those.