Below is thee code that I used. I think a better way to see if the user has been migrated from a roaming profile yet would be to just run a query of the profilepath that is in AD and if it is not "" then continue on. I am going to work on that. \:\)

 Code:
;Checks to for touch file to see if we have already migrates user
	If Not Exist ("$TouchLoc\@USERIDroamdelete.tch")
			; Sets the username to the logged on user
				$username = @USERID		
				; Calls the Translate function on the userID to get the FQDN
				$userhome = TranslateName (3, "", 3, "@LDomain\$username", 1)
				;Binds to the Users Active Directory Object
				$userinfo = GetObject("LDAP://" + $userhome[0])
				
				
				;deletes the profile path in Active Directory
				$userinfo.putEX(1, "profilePath", "")
				;Executes the Query
				$userinfo.SetInfo
		;Writes the touch file 
		Open(3,"$TouchLoc\@USERIDroamdelete.tch",5)
		WriteLine (3,"PLEASE DO NOT DELETE THIS FILE")
		Close(3)
	EndIf