Changing character when clicking on a button

At the start of my game players can choose what character they want to be. I am doing this by letting the player click a gui button and whichever one they click is their character. I already have the characters made how can make it so once it is clicked it will respawn them or teleport them to a different location and change their character to the one I made.

local button = script.Parent

button.MouseButton1Click:Connect(function()
	
end)

1 Like