Is this it? I found it in Add-Ons | Script_Wrench.zip Plus it was labeled server.cs
function servercmdwrench(%client)
{
if(isObject(%client.player))
{
if(%Client.Minigame && !%Client.isAdmin && %Client.minigame.owner != %Client)
{
messageClient(%client, '', '\c6You cannot use this while in a minigame');
return;
}
else
{
%player = %client.player;
%player.updateArm(wrenchImage);
%player.mountImage(wrenchimage, 0);
}
}
}