Hi guys i hope u an help iv is it possable to walk on un object in fps view and one u in this object u have an option to let say ride it? And oncce u at ur destination u want to leave the object to explore were u are? Is there a script that can assist in this?
The easiest way to make a player travel along with a platform is to set the player’s parent to the platform during the journey:-
player.transform.parent = platform.transform;
You can set the parent property to null when the player gets off the platform.