function onGrab(target) print(ShowPosition(target)) end function ShowPosition(target) local pos = vci.assets.GetTransform(target).GetPosition() local posc = tostring(pos) local message = target.."の現在位置は"..posc.."です" return message end