Is there a way to make the player morph into a given character?

Hello, I want to make a script that when a player presses a button, they turn into a given character.
I want some examples, or tutorials. Thank you.

1 Like

Maybe this could help you for understanding how changing characters work
Changing Character

And for Clicking you just need to do

button.MouseButton1Click:Connect(function()
      character()
end)
1 Like

Thanks for your information. :grinning: