How do i make a morph that you click on to get morphed

Sorry if i worded the title wrong but im trying to make a part that if you click on it you get morphed into something, can someone help me with this?

I guess you probably use ClickDetector

local ClickDetector = --path

ClickDetector.MouseClick:Connect(function(player)
	player.Character = -- path to Model/Morph
end)
3 Likes