Here's the VH Death for any one who wants it, it requires Fooly Fun Commands, the code is really messy but it works for me.
//VH Death////////////////////////////////////////////////////////////////////
function serverCmdSelf Delete(%client)
{
schedule(50,10,serverCmdvhdeath1,%client);
messageAll('messageSent',"" @ %client.name @ " \c6took the emo way out.");
schedule(2000,50,serverCmdvhdeath2,%client);
}
function serverCmdvhdeath1(%client)
{
%client.player.playThread(1,crouch);
schedule(0,10,serverCmdskeleme,%client);
}
function serverCmdvhdeath2(%client)
{
%cloneName = %client.name;
%clone = %client.player;
%client.player.setShapeName(%cloneName @ "'s corpse");
%client.createPlayer();
%client.spawnPlayer();
schedule(100,10,serverCmdnormalme,%client);
%client.player.playThread(1,root);
%client.player.setShapeName(%clone.name);
%clone.schedule(20000,"removeBody");
}
////////////////////////////////////////////////////////////////////////////