I want to make a GUI that morphs a player into a model once clicked, and revert back to the player when a certain amount of time has passed. How would I go about this?
You're welcome!
local time = 100 Button.MouseButton1Down:connect(function() -- add your morph code here wait(.1) delay(time, function() --[[add your own lines of code to delete the morph, I'm not going to do this whole thing for you, sorry, I would love to help, but I do not know how your morph works --]] end) end)